pub unsafe trait UIPasteConfigurationSupporting: NSObjectProtocol + IsMainThreadOnly {
    // Provided methods
    unsafe fn pasteConfiguration(
        &self
    ) -> Option<Retained<UIPasteConfiguration>>
       where Self: Sized + Message { ... }
    unsafe fn setPasteConfiguration(
        &self,
        paste_configuration: Option<&UIPasteConfiguration>
    )
       where Self: Sized + Message { ... }
    unsafe fn pasteItemProviders(
        &self,
        item_providers: &NSArray<NSItemProvider>
    )
       where Self: Sized + Message { ... }
    unsafe fn canPasteItemProviders(
        &self,
        item_providers: &NSArray<NSItemProvider>
    ) -> bool
       where Self: Sized + Message { ... }
}
Available on crate feature UIPasteConfigurationSupporting only.

Provided Methods§

source

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

Available on crate feature UIPasteConfiguration only.
source

unsafe fn setPasteConfiguration( &self, paste_configuration: Option<&UIPasteConfiguration> )
where Self: Sized + Message,

Available on crate feature UIPasteConfiguration only.
source

unsafe fn pasteItemProviders(&self, item_providers: &NSArray<NSItemProvider>)
where Self: Sized + Message,

source

unsafe fn canPasteItemProviders( &self, item_providers: &NSArray<NSItemProvider> ) -> bool
where Self: Sized + Message,

Trait Implementations§

source§

impl ProtocolType for dyn UIPasteConfigurationSupporting

source§

const NAME: &'static str = "UIPasteConfigurationSupporting"

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 UIPasteConfigurationSupporting

Implementations on Foreign Types§

source§

impl<T> UIPasteConfigurationSupporting for ProtocolObject<T>

Implementors§

source§

impl UIPasteConfigurationSupporting for UIResponder

Available on crate feature UIResponder only.
source§

impl UIPasteConfigurationSupporting for UITextField

Available on crate features UIResponder and UIView and UIControl and UITextField only.
source§

impl UIPasteConfigurationSupporting for UITextView

Available on crate features UIResponder and UIView and UIScrollView and UITextView only.