Struct objc2::foundation::NSException
source · #[repr(C)]pub struct NSException { /* private fields */ }
Expand description
A special condition that interrupts the normal flow of program execution.
Exceptions can be thrown and caught using the objc2::exception
module.
See also Apple’s documentation.
Implementations§
source§impl NSException
impl NSException
sourcepub fn new(
name: &NSString,
reason: Option<&NSString>,
user_info: Option<&NSDictionary<Object, Object>>
) -> Option<Id<Self, Shared>>
pub fn new( name: &NSString, reason: Option<&NSString>, user_info: Option<&NSDictionary<Object, Object>> ) -> Option<Id<Self, Shared>>
Create a new NSException
object.
Returns None
if the exception couldn’t be created (example: If the
process is out of memory).
sourcepub unsafe fn raise(&self) -> !
pub unsafe fn raise(&self) -> !
Raises the exception, causing program flow to jump to the local exception handler.
This is equivalent to using objc2::exception::throw
.
Safety
Same as objc2::exception::throw
.
sourcepub fn name(&self) -> Id<NSString, Shared>
pub fn name(&self) -> Id<NSString, Shared>
A that uniquely identifies the type of exception.
See Apple’s documentation for some of the different values this can take.
sourcepub fn reason(&self) -> Option<Id<NSString, Shared>>
pub fn reason(&self) -> Option<Id<NSString, Shared>>
A human-readable message summarizing the reason for the exception.
sourcepub fn user_info(&self) -> Option<Id<NSDictionary<Object, Object>, Shared>>
pub fn user_info(&self) -> Option<Id<NSDictionary<Object, Object>, Shared>>
Application-specific data pertaining to the exception.
Methods from Deref<Target = NSObject>§
sourcepub fn is_kind_of<T: ClassType>(&self) -> bool
pub fn is_kind_of<T: ClassType>(&self) -> bool
Check if the object is an instance of the class, or one of it’s subclasses.
See Apple’s documentation for more details on what you may (and what you may not) do with this information.
Methods from Deref<Target = Object>§
sourcepub unsafe fn ivar_ptr<T: Encode>(&self, name: &str) -> *mut T
pub unsafe fn ivar_ptr<T: Encode>(&self, name: &str) -> *mut T
Returns a pointer to the instance variable / ivar with the given name.
This is similar to UnsafeCell::get
, see that for more information
on what is and isn’t safe to do.
Usually you will have defined the instance variable yourself with
ClassBuilder::add_ivar
, the type of the ivar T
must match the
type used in that.
Attempting to access or modify private implementation details of a class that you do no control using this is not supported, and may invoke undefined behaviour.
Library implementors are strongly encouraged to expose a safe interface to the ivar.
Panics
May panic if the object has no ivar with the given name. May also
panic if the type encoding of the ivar differs from the type encoding
of T
.
This should purely seen as help while debugging and is not guaranteed
(e.g. it may be disabled when debug_assertions
are off).
Safety
The object must have an instance variable with the given name, and it
must be of type T
. Any invariants that the object have assumed about
the value of the instance variable must not be violated.
No thread syncronization is done on accesses to the variable, so you must ensure that any access to the returned pointer do not cause data races, and that Rust’s mutability rules are not otherwise violated.
sourcepub unsafe fn ivar<T: Encode>(&self, name: &str) -> &T
pub unsafe fn ivar<T: Encode>(&self, name: &str) -> &T
Returns a reference to the instance variable with the given name.
See Object::ivar_ptr
for more information, including on when this
panics.
Safety
The object must have an instance variable with the given name, and it
must be of type T
.
No thread syncronization is done, so you must ensure that no other
thread is concurrently mutating the variable. This requirement can be
considered upheld if all mutation happens through Object::ivar_mut
(since that takes &mut self
).
sourcepub unsafe fn get_ivar<T: Encode>(&self, name: &str) -> &T
👎Deprecated: Use Object::ivar
instead.
pub unsafe fn get_ivar<T: Encode>(&self, name: &str) -> &T
Object::ivar
instead.sourcepub unsafe fn ivar_mut<T: Encode>(&mut self, name: &str) -> &mut T
pub unsafe fn ivar_mut<T: Encode>(&mut self, name: &str) -> &mut T
Returns a mutable reference to the ivar with the given name.
See Object::ivar_ptr
for more information, including on when this
panics.
Safety
The object must have an instance variable with the given name, and it
must be of type T
.
This access happens through &mut self
, which means we know it to be
the only reference, hence you do not need to do any work to ensure
that data races do not happen.
sourcepub unsafe fn get_mut_ivar<T: Encode>(&mut self, name: &str) -> &mut T
👎Deprecated: Use Object::ivar_mut
instead.
pub unsafe fn get_mut_ivar<T: Encode>(&mut self, name: &str) -> &mut T
Object::ivar_mut
instead.sourcepub unsafe fn set_ivar<T: Encode>(&mut self, name: &str, value: T)
pub unsafe fn set_ivar<T: Encode>(&mut self, name: &str, value: T)
Sets the value of the ivar with the given name.
This is just a helpful shorthand for Object::ivar_mut
, see that
for more information.
Safety
Same as Object::ivar_mut
.
Trait Implementations§
source§impl AsMut<NSException> for NSException
impl AsMut<NSException> for NSException
source§impl AsMut<NSObject> for NSException
impl AsMut<NSObject> for NSException
source§impl AsMut<Object> for NSException
impl AsMut<Object> for NSException
source§impl AsRef<NSException> for NSException
impl AsRef<NSException> for NSException
source§impl AsRef<NSObject> for NSException
impl AsRef<NSObject> for NSException
source§impl AsRef<Object> for NSException
impl AsRef<Object> for NSException
source§impl Borrow<NSObject> for NSException
impl Borrow<NSObject> for NSException
source§impl Borrow<Object> for NSException
impl Borrow<Object> for NSException
source§impl BorrowMut<NSObject> for NSException
impl BorrowMut<NSObject> for NSException
source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
source§impl BorrowMut<Object> for NSException
impl BorrowMut<Object> for NSException
source§fn borrow_mut(&mut self) -> &mut Object
fn borrow_mut(&mut self) -> &mut Object
source§impl ClassType for NSException
impl ClassType for NSException
source§impl Debug for NSException
impl Debug for NSException
source§impl Deref for NSException
impl Deref for NSException
source§impl DerefMut for NSException
impl DerefMut for NSException
source§impl Hash for NSException
impl Hash for NSException
source§impl NSCopying for NSException
impl NSCopying for NSException
source§impl PartialEq<NSException> for NSException
impl PartialEq<NSException> for NSException
source§fn eq(&self, other: &NSException) -> bool
fn eq(&self, other: &NSException) -> bool
self
and other
values to be equal, and is used
by ==
.