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§

source

unsafe fn exceptionHandler_shouldLogException_mask( &self, sender: Option<&NSExceptionHandler>, exception: Option<&NSException>, a_mask: NSUInteger ) -> bool
where Self: Sized + Message,

source

unsafe fn exceptionHandler_shouldHandleException_mask( &self, sender: Option<&NSExceptionHandler>, exception: Option<&NSException>, a_mask: NSUInteger ) -> bool
where Self: Sized + Message,

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

impl NSObjectNSExceptionHandlerDelegate for NSObject

Implementors§