Trait NSSpringLoadingDestination

Source
pub unsafe trait NSSpringLoadingDestination: NSObjectProtocol + MainThreadOnly {
    // Provided methods
    unsafe fn springLoadingActivated_draggingInfo(
        &self,
        activated: bool,
        dragging_info: &ProtocolObject<dyn NSDraggingInfo>,
    )
       where Self: Sized + Message { ... }
    unsafe fn springLoadingHighlightChanged(
        &self,
        dragging_info: &ProtocolObject<dyn NSDraggingInfo>,
    )
       where Self: Sized + Message { ... }
    unsafe fn springLoadingEntered(
        &self,
        dragging_info: &ProtocolObject<dyn NSDraggingInfo>,
    ) -> NSSpringLoadingOptions
       where Self: Sized + Message { ... }
    unsafe fn springLoadingUpdated(
        &self,
        dragging_info: &ProtocolObject<dyn NSDraggingInfo>,
    ) -> NSSpringLoadingOptions
       where Self: Sized + Message { ... }
    unsafe fn springLoadingExited(
        &self,
        dragging_info: &ProtocolObject<dyn NSDraggingInfo>,
    )
       where Self: Sized + Message { ... }
    unsafe fn draggingEnded(
        &self,
        dragging_info: &ProtocolObject<dyn NSDraggingInfo>,
    )
       where Self: Sized + Message { ... }
}
Available on crate feature NSDragging only.
Expand description

Provided Methods§

Source

unsafe fn springLoadingActivated_draggingInfo( &self, activated: bool, dragging_info: &ProtocolObject<dyn NSDraggingInfo>, )
where Self: Sized + Message,

Source

unsafe fn springLoadingHighlightChanged( &self, dragging_info: &ProtocolObject<dyn NSDraggingInfo>, )
where Self: Sized + Message,

Source

unsafe fn springLoadingEntered( &self, dragging_info: &ProtocolObject<dyn NSDraggingInfo>, ) -> NSSpringLoadingOptions
where Self: Sized + Message,

Source

unsafe fn springLoadingUpdated( &self, dragging_info: &ProtocolObject<dyn NSDraggingInfo>, ) -> NSSpringLoadingOptions
where Self: Sized + Message,

Source

unsafe fn springLoadingExited( &self, dragging_info: &ProtocolObject<dyn NSDraggingInfo>, )
where Self: Sized + Message,

Source

unsafe fn draggingEnded( &self, dragging_info: &ProtocolObject<dyn NSDraggingInfo>, )
where Self: Sized + Message,

Trait Implementations§

Source§

impl ProtocolType for dyn NSSpringLoadingDestination

Source§

const NAME: &'static str = "NSSpringLoadingDestination"

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 NSSpringLoadingDestination

Implementations on Foreign Types§

Source§

impl<T> NSSpringLoadingDestination for ProtocolObject<T>

Implementors§