pub unsafe trait NSViewControllerPresentationAnimator: NSObjectProtocol + IsMainThreadOnly {
    // Provided methods
    unsafe fn animatePresentationOfViewController_fromViewController(
        &self,
        view_controller: &NSViewController,
        from_view_controller: &NSViewController
    )
       where Self: Sized + Message { ... }
    unsafe fn animateDismissalOfViewController_fromViewController(
        &self,
        view_controller: &NSViewController,
        from_view_controller: &NSViewController
    )
       where Self: Sized + Message { ... }
}
Available on crate feature NSViewController only.

Provided Methods§

source

unsafe fn animatePresentationOfViewController_fromViewController( &self, view_controller: &NSViewController, from_view_controller: &NSViewController )
where Self: Sized + Message,

Available on crate feature NSResponder only.
source

unsafe fn animateDismissalOfViewController_fromViewController( &self, view_controller: &NSViewController, from_view_controller: &NSViewController )
where Self: Sized + Message,

Available on crate feature NSResponder only.

Trait Implementations§

source§

impl ProtocolType for dyn NSViewControllerPresentationAnimator

source§

const NAME: &'static str = "NSViewControllerPresentationAnimator"

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 NSViewControllerPresentationAnimator

Implementations on Foreign Types§

source§

impl<T> NSViewControllerPresentationAnimator for ProtocolObject<T>

Implementors§