pub unsafe trait NSObjectNSExceptionHandlerDelegate: ClassType {
// Provided methods
unsafe fn exceptionHandler_shouldLogException_mask(
&self,
sender: Option<&NSExceptionHandler>,
exception: Option<&NSException>,
a_mask: NSUInteger
) -> bool
where Self: Sized + Message { ... }
unsafe fn exceptionHandler_shouldHandleException_mask(
&self,
sender: Option<&NSExceptionHandler>,
exception: Option<&NSException>,
a_mask: NSUInteger
) -> bool
where Self: Sized + Message { ... }
}
Available on crate feature
NSExceptionHandler
only.Expand description
Category “NSExceptionHandlerDelegate” on NSObject
.
Provided Methods§
unsafe fn exceptionHandler_shouldLogException_mask( &self, sender: Option<&NSExceptionHandler>, exception: Option<&NSException>, a_mask: NSUInteger ) -> bool
unsafe fn exceptionHandler_shouldHandleException_mask( &self, sender: Option<&NSExceptionHandler>, exception: Option<&NSException>, a_mask: NSUInteger ) -> bool
Object Safety§
This trait is not object safe.