pub unsafe trait UISpringLoadedInteractionBehavior: NSObjectProtocol + IsMainThreadOnly {
    // Provided methods
    unsafe fn shouldAllowInteraction_withContext(
        &self,
        interaction: &UISpringLoadedInteraction,
        context: &ProtocolObject<dyn UISpringLoadedInteractionContext>
    ) -> bool
       where Self: Sized + Message { ... }
    unsafe fn interactionDidFinish(
        &self,
        interaction: &UISpringLoadedInteraction
    )
       where Self: Sized + Message { ... }
}
Available on crate feature UISpringLoadedInteraction only.

Provided Methods§

Trait Implementations§

source§

impl ProtocolType for dyn UISpringLoadedInteractionBehavior

source§

const NAME: &'static str = "UISpringLoadedInteractionBehavior"

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 UISpringLoadedInteractionBehavior

Implementations on Foreign Types§

source§

impl<T> UISpringLoadedInteractionBehavior for ProtocolObject<T>

Implementors§