Trait MKLookAroundViewControllerDelegate

Source
pub unsafe trait MKLookAroundViewControllerDelegate: NSObjectProtocol {
    // Provided methods
    unsafe fn lookAroundViewControllerWillUpdateScene(
        &self,
        view_controller: &MKLookAroundViewController,
    )
       where Self: Sized + Message { ... }
    unsafe fn lookAroundViewControllerDidUpdateScene(
        &self,
        view_controller: &MKLookAroundViewController,
    )
       where Self: Sized + Message { ... }
    unsafe fn lookAroundViewControllerWillPresentFullScreen(
        &self,
        view_controller: &MKLookAroundViewController,
    )
       where Self: Sized + Message { ... }
    unsafe fn lookAroundViewControllerDidPresentFullScreen(
        &self,
        view_controller: &MKLookAroundViewController,
    )
       where Self: Sized + Message { ... }
    unsafe fn lookAroundViewControllerWillDismissFullScreen(
        &self,
        view_controller: &MKLookAroundViewController,
    )
       where Self: Sized + Message { ... }
    unsafe fn lookAroundViewControllerDidDismissFullScreen(
        &self,
        view_controller: &MKLookAroundViewController,
    )
       where Self: Sized + Message { ... }
}
Available on crate feature MKLookAroundViewController only.
Expand description

Provided Methods§

Source

unsafe fn lookAroundViewControllerWillUpdateScene( &self, view_controller: &MKLookAroundViewController, )
where Self: Sized + Message,

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

unsafe fn lookAroundViewControllerDidUpdateScene( &self, view_controller: &MKLookAroundViewController, )
where Self: Sized + Message,

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

unsafe fn lookAroundViewControllerWillPresentFullScreen( &self, view_controller: &MKLookAroundViewController, )
where Self: Sized + Message,

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

unsafe fn lookAroundViewControllerDidPresentFullScreen( &self, view_controller: &MKLookAroundViewController, )
where Self: Sized + Message,

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

unsafe fn lookAroundViewControllerWillDismissFullScreen( &self, view_controller: &MKLookAroundViewController, )
where Self: Sized + Message,

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

unsafe fn lookAroundViewControllerDidDismissFullScreen( &self, view_controller: &MKLookAroundViewController, )
where Self: Sized + Message,

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

Trait Implementations§

Source§

impl ProtocolType for dyn MKLookAroundViewControllerDelegate

Source§

const NAME: &'static str = "MKLookAroundViewControllerDelegate"

The name of the Objective-C protocol that this type represents. Read more
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 MKLookAroundViewControllerDelegate

Implementations on Foreign Types§

Source§

impl<T> MKLookAroundViewControllerDelegate for ProtocolObject<T>

Implementors§