pub unsafe trait EXHostViewControllerDelegate: NSObjectProtocol {
    // Provided methods
    unsafe fn hostViewControllerDidActivate(
        &self,
        view_controller: &EXHostViewController
    )
       where Self: Sized + Message { ... }
    unsafe fn hostViewControllerWillDeactivate_error(
        &self,
        view_controller: &EXHostViewController,
        error: Option<&NSError>
    )
       where Self: Sized + Message { ... }
}
Available on crate feature EXHostViewController only.

Provided Methods§

source

unsafe fn hostViewControllerDidActivate( &self, view_controller: &EXHostViewController )
where Self: Sized + Message,

Available on crate feature objc2-app-kit and macOS only.
source

unsafe fn hostViewControllerWillDeactivate_error( &self, view_controller: &EXHostViewController, error: Option<&NSError> )
where Self: Sized + Message,

Available on crate feature objc2-app-kit and macOS only.

Trait Implementations§

source§

impl ProtocolType for dyn EXHostViewControllerDelegate

source§

const NAME: &'static str = "EXHostViewControllerDelegate"

The name of the Objective-C protocol that this type represents.
source§

fn protocol() -> Option<&'static AnyProtocol>

Get a reference to the Objective-C protocol object that this type represents. Read more
source§

impl<T> ImplementedBy<T> for dyn EXHostViewControllerDelegate

Implementations on Foreign Types§

source§

impl<T> EXHostViewControllerDelegate for ProtocolObject<T>

Implementors§