pub unsafe trait UIContextMenuInteractionAnimating: NSObjectProtocol + IsMainThreadOnly {
    // Provided methods
    unsafe fn previewViewController(&self) -> Option<Retained<UIViewController>>
       where Self: Sized + Message { ... }
    unsafe fn addAnimations(&self, animations: &Block<dyn Fn()>)
       where Self: Sized + Message { ... }
    unsafe fn addCompletion(&self, completion: &Block<dyn Fn()>)
       where Self: Sized + Message { ... }
}
Available on crate feature UIContextMenuInteraction only.

Provided Methods§

source

unsafe fn previewViewController(&self) -> Option<Retained<UIViewController>>
where Self: Sized + Message,

Available on crate features UIResponder and UIViewController only.
source

unsafe fn addAnimations(&self, animations: &Block<dyn Fn()>)
where Self: Sized + Message,

Available on crate feature block2 only.
source

unsafe fn addCompletion(&self, completion: &Block<dyn Fn()>)
where Self: Sized + Message,

Available on crate feature block2 only.

Trait Implementations§

source§

impl ProtocolType for dyn UIContextMenuInteractionAnimating

source§

const NAME: &'static str = "UIContextMenuInteractionAnimating"

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 UIContextMenuInteractionAnimating

Implementations on Foreign Types§

source§

impl<T> UIContextMenuInteractionAnimating for ProtocolObject<T>

Implementors§