pub unsafe trait UIActivityItemsConfigurationReading: NSObjectProtocol + IsMainThreadOnly {
    // Provided methods
    unsafe fn itemProvidersForActivityItemsConfiguration(
        &self
    ) -> Retained<NSArray<NSItemProvider>>
       where Self: Sized + Message { ... }
    unsafe fn activityItemsConfigurationSupportsInteraction(
        &self,
        interaction: &UIActivityItemsConfigurationInteraction
    ) -> bool
       where Self: Sized + Message { ... }
    unsafe fn activityItemsConfigurationMetadataForKey(
        &self,
        key: &UIActivityItemsConfigurationMetadataKey
    ) -> Option<Retained<AnyObject>>
       where Self: Sized + Message { ... }
    unsafe fn activityItemsConfigurationMetadataForItemAtIndex_key(
        &self,
        index: NSInteger,
        key: &UIActivityItemsConfigurationMetadataKey
    ) -> Option<Retained<AnyObject>>
       where Self: Sized + Message { ... }
    unsafe fn activityItemsConfigurationPreviewForItemAtIndex_intent_suggestedSize(
        &self,
        index: NSInteger,
        intent: &UIActivityItemsConfigurationPreviewIntent,
        suggested_size: CGSize
    ) -> Option<Retained<NSItemProvider>>
       where Self: Sized + Message { ... }
    unsafe fn applicationActivitiesForActivityItemsConfiguration(
        &self
    ) -> Option<Retained<NSArray<UIActivity>>>
       where Self: Sized + Message { ... }
}
Available on crate feature UIActivityItemsConfigurationReading only.

Provided Methods§

Trait Implementations§

source§

impl ProtocolType for dyn UIActivityItemsConfigurationReading

source§

const NAME: &'static str = "UIActivityItemsConfigurationReading"

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 UIActivityItemsConfigurationReading

Implementations on Foreign Types§

source§

impl<T> UIActivityItemsConfigurationReading for ProtocolObject<T>

Implementors§

source§

impl UIActivityItemsConfigurationReading for UIActivityItemsConfiguration

Available on crate feature UIActivityItemsConfiguration only.