Trait objc2_app_kit::NSSpringLoadingDestination

source ·
pub unsafe trait NSSpringLoadingDestination: NSObjectProtocol + IsMainThreadOnly {
    // 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.

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.
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§