Struct objc2_foundation::NSException
source · #[repr(C)]pub struct NSException { /* private fields */ }
NSException
only.Implementations§
source§impl NSException
impl NSException
sourcepub fn new(
name: &NSExceptionName,
reason: Option<&NSString>,
user_info: Option<&NSDictionary>
) -> Option<Retained<Self>>
Available on crate features NSObjCRuntime
and NSString
and NSDictionary
only.
pub fn new( name: &NSExceptionName, reason: Option<&NSString>, user_info: Option<&NSDictionary> ) -> Option<Retained<Self>>
NSObjCRuntime
and NSString
and NSDictionary
only.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
.
source§impl NSException
impl NSException
pub unsafe fn exceptionWithName_reason_userInfo( name: &NSExceptionName, reason: Option<&NSString>, user_info: Option<&NSDictionary> ) -> Retained<NSException>
NSDictionary
and NSObjCRuntime
and NSString
only.pub unsafe fn initWithName_reason_userInfo( this: Allocated<Self>, a_name: &NSExceptionName, a_reason: Option<&NSString>, a_user_info: Option<&NSDictionary> ) -> Retained<Self>
NSDictionary
and NSObjCRuntime
and NSString
only.pub fn name(&self) -> Retained<NSExceptionName>
NSObjCRuntime
and NSString
only.pub fn reason(&self) -> Option<Retained<NSString>>
NSString
only.pub fn userInfo(&self) -> Option<Retained<NSDictionary>>
NSDictionary
only.pub unsafe fn callStackReturnAddresses(&self) -> Retained<NSArray<NSNumber>>
NSArray
and NSValue
only.pub unsafe fn callStackSymbols(&self) -> Retained<NSArray<NSString>>
NSArray
and NSString
only.source§impl NSException
impl NSException
Methods declared on superclass NSObject
impl NSException
NSExceptionRaisingConveniences
Methods from Deref<Target = NSObject>§
sourcepub fn doesNotRecognizeSelector(&self, sel: Sel) -> !
pub fn doesNotRecognizeSelector(&self, sel: Sel) -> !
Handle messages the object doesn’t recognize.
See Apple’s documentation for details.
Methods from Deref<Target = AnyObject>§
sourcepub fn class(&self) -> &'static AnyClass
pub fn class(&self) -> &'static AnyClass
Dynamically find the class of this object.
§Example
Check that an instance of NSObject
has the precise class NSObject
.
use objc2::ClassType;
use objc2::runtime::NSObject;
let obj = NSObject::new();
assert_eq!(obj.class(), NSObject::class());
sourcepub unsafe fn get_ivar<T>(&self, name: &str) -> &Twhere
T: Encode,
👎Deprecated: this is difficult to use correctly, use Ivar::load
instead.
pub unsafe fn get_ivar<T>(&self, name: &str) -> &Twhere
T: Encode,
Ivar::load
instead.Use Ivar::load
instead.
§Safety
The object must have an instance variable with the given name, and it
must be of type T
.
See Ivar::load_ptr
for details surrounding this.
sourcepub unsafe fn get_mut_ivar<T>(&mut self, name: &str) -> &mut Twhere
T: Encode,
👎Deprecated: this is difficult to use correctly, use Ivar::load_mut
instead.
pub unsafe fn get_mut_ivar<T>(&mut self, name: &str) -> &mut Twhere
T: Encode,
Ivar::load_mut
instead.Use Ivar::load_mut
instead.
§Safety
The object must have an instance variable with the given name, and it
must be of type T
.
See Ivar::load_ptr
for details surrounding this.
Trait Implementations§
source§impl AsMut<AnyObject> for NSException
impl AsMut<AnyObject> for NSException
source§impl AsMut<NSException> for NSException
impl AsMut<NSException> for NSException
source§impl AsMut<NSObject> for NSException
impl AsMut<NSObject> for NSException
source§impl AsRef<AnyObject> for NSException
impl AsRef<AnyObject> 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 Borrow<AnyObject> for NSException
impl Borrow<AnyObject> for NSException
source§impl Borrow<NSObject> for NSException
impl Borrow<NSObject> for NSException
source§impl BorrowMut<AnyObject> for NSException
impl BorrowMut<AnyObject> for NSException
source§fn borrow_mut(&mut self) -> &mut AnyObject
fn borrow_mut(&mut self) -> &mut AnyObject
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 ClassType for NSException
impl ClassType for NSException
§type Mutability = InteriorMutable
type Mutability = InteriorMutable
source§const NAME: &'static str = "NSException"
const NAME: &'static str = "NSException"
source§fn class() -> &'static AnyClass
fn class() -> &'static AnyClass
source§fn as_super_mut(&mut self) -> &mut Self::Super
fn as_super_mut(&mut self) -> &mut Self::Super
source§impl Debug for NSException
Available on crate features NSObjCRuntime
and NSString
only.
impl Debug for NSException
NSObjCRuntime
and NSString
only.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 NSCoding for NSException
Available on crate feature NSObject
only.
impl NSCoding for NSException
NSObject
only.source§impl NSCopying for NSException
Available on crate feature NSObject
only.
impl NSCopying for NSException
NSObject
only.source§impl NSObjectProtocol for NSException
impl NSObjectProtocol for NSException
source§fn isEqual(&self, other: &AnyObject) -> bool
fn isEqual(&self, other: &AnyObject) -> bool
source§fn hash(&self) -> usize
fn hash(&self) -> usize
source§fn isKindOfClass(&self, cls: &AnyClass) -> bool
fn isKindOfClass(&self, cls: &AnyClass) -> bool
source§fn is_kind_of<T>(&self) -> bool
fn is_kind_of<T>(&self) -> bool
source§fn isMemberOfClass(&self, cls: &AnyClass) -> bool
fn isMemberOfClass(&self, cls: &AnyClass) -> bool
source§fn respondsToSelector(&self, aSelector: Sel) -> bool
fn respondsToSelector(&self, aSelector: Sel) -> bool
source§fn conformsToProtocol(&self, aProtocol: &AnyProtocol) -> bool
fn conformsToProtocol(&self, aProtocol: &AnyProtocol) -> bool
source§fn debugDescription(&self) -> Retained<NSObject>
fn debugDescription(&self) -> Retained<NSObject>
source§impl NSSecureCoding for NSException
Available on crate feature NSObject
only.
impl NSSecureCoding for NSException
NSObject
only.source§impl PartialEq for NSException
impl PartialEq 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 ==
.source§impl RefEncode for NSException
impl RefEncode for NSException
source§const ENCODING_REF: Encoding = <NSObject as ::objc2::RefEncode>::ENCODING_REF
const ENCODING_REF: Encoding = <NSObject as ::objc2::RefEncode>::ENCODING_REF
source§impl ToOwned for NSException
Available on crate feature NSObject
only.
impl ToOwned for NSException
NSObject
only.§type Owned = Retained<NSException>
type Owned = Retained<NSException>
source§fn to_owned(&self) -> Self::Owned
fn to_owned(&self) -> Self::Owned
1.63.0 · source§fn clone_into(&self, target: &mut Self::Owned)
fn clone_into(&self, target: &mut Self::Owned)
impl Eq for NSException
impl Message for NSException
impl RefUnwindSafe for NSException
impl Send for NSException
impl StructuralPartialEq for NSException
impl Sync for NSException
impl UnwindSafe for NSException
Auto Trait Implementations§
impl !Freeze for NSException
impl !Unpin for NSException
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> CounterpartOrSelf for T
impl<T> CounterpartOrSelf for T
§type Immutable = <<T as ClassType>::Mutability as MutabilityCounterpartOrSelf<T>>::Immutable
type Immutable = <<T as ClassType>::Mutability as MutabilityCounterpartOrSelf<T>>::Immutable
Self
if the type has no
immutable counterpart. Read more§type Mutable = <<T as ClassType>::Mutability as MutabilityCounterpartOrSelf<T>>::Mutable
type Mutable = <<T as ClassType>::Mutability as MutabilityCounterpartOrSelf<T>>::Mutable
Self
if the type has no
mutable counterpart. Read more