pub unsafe trait UIScribbleInteractionDelegate: NSObjectProtocol + IsMainThreadOnly {
    // Provided methods
    unsafe fn scribbleInteraction_shouldBeginAtLocation(
        &self,
        interaction: &UIScribbleInteraction,
        location: CGPoint
    ) -> bool
       where Self: Sized + Message { ... }
    unsafe fn scribbleInteractionShouldDelayFocus(
        &self,
        interaction: &UIScribbleInteraction
    ) -> bool
       where Self: Sized + Message { ... }
    unsafe fn scribbleInteractionWillBeginWriting(
        &self,
        interaction: &UIScribbleInteraction
    )
       where Self: Sized + Message { ... }
    unsafe fn scribbleInteractionDidFinishWriting(
        &self,
        interaction: &UIScribbleInteraction
    )
       where Self: Sized + Message { ... }
}
Available on crate feature UIScribbleInteraction only.

Provided Methods§

source

unsafe fn scribbleInteraction_shouldBeginAtLocation( &self, interaction: &UIScribbleInteraction, location: CGPoint ) -> bool
where Self: Sized + Message,

source

unsafe fn scribbleInteractionShouldDelayFocus( &self, interaction: &UIScribbleInteraction ) -> bool
where Self: Sized + Message,

source

unsafe fn scribbleInteractionWillBeginWriting( &self, interaction: &UIScribbleInteraction )
where Self: Sized + Message,

source

unsafe fn scribbleInteractionDidFinishWriting( &self, interaction: &UIScribbleInteraction )
where Self: Sized + Message,

Trait Implementations§

source§

impl ProtocolType for dyn UIScribbleInteractionDelegate

source§

const NAME: &'static str = "UIScribbleInteractionDelegate"

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 UIScribbleInteractionDelegate

Implementations on Foreign Types§

source§

impl<T> UIScribbleInteractionDelegate for ProtocolObject<T>

Implementors§