pub unsafe trait UICloudSharingControllerDelegate: NSObjectProtocol + IsMainThreadOnly {
    // Provided methods
    unsafe fn cloudSharingController_failedToSaveShareWithError(
        &self,
        csc: &UICloudSharingController,
        error: &NSError
    )
       where Self: Sized + Message { ... }
    unsafe fn itemTitleForCloudSharingController(
        &self,
        csc: &UICloudSharingController
    ) -> Option<Retained<NSString>>
       where Self: Sized + Message { ... }
    unsafe fn itemThumbnailDataForCloudSharingController(
        &self,
        csc: &UICloudSharingController
    ) -> Option<Retained<NSData>>
       where Self: Sized + Message { ... }
    unsafe fn itemTypeForCloudSharingController(
        &self,
        csc: &UICloudSharingController
    ) -> Option<Retained<NSString>>
       where Self: Sized + Message { ... }
    unsafe fn cloudSharingControllerDidSaveShare(
        &self,
        csc: &UICloudSharingController
    )
       where Self: Sized + Message { ... }
    unsafe fn cloudSharingControllerDidStopSharing(
        &self,
        csc: &UICloudSharingController
    )
       where Self: Sized + Message { ... }
}
Available on crate feature UICloudSharingController only.

Provided Methods§

source

unsafe fn cloudSharingController_failedToSaveShareWithError( &self, csc: &UICloudSharingController, error: &NSError )
where Self: Sized + Message,

Available on crate features UIResponder and UIViewController only.
source

unsafe fn itemTitleForCloudSharingController( &self, csc: &UICloudSharingController ) -> Option<Retained<NSString>>
where Self: Sized + Message,

Available on crate features UIResponder and UIViewController only.
source

unsafe fn itemThumbnailDataForCloudSharingController( &self, csc: &UICloudSharingController ) -> Option<Retained<NSData>>
where Self: Sized + Message,

Available on crate features UIResponder and UIViewController only.
source

unsafe fn itemTypeForCloudSharingController( &self, csc: &UICloudSharingController ) -> Option<Retained<NSString>>
where Self: Sized + Message,

Available on crate features UIResponder and UIViewController only.
source

unsafe fn cloudSharingControllerDidSaveShare( &self, csc: &UICloudSharingController )
where Self: Sized + Message,

Available on crate features UIResponder and UIViewController only.
source

unsafe fn cloudSharingControllerDidStopSharing( &self, csc: &UICloudSharingController )
where Self: Sized + Message,

Available on crate features UIResponder and UIViewController only.

Trait Implementations§

source§

impl ProtocolType for dyn UICloudSharingControllerDelegate

source§

const NAME: &'static str = "UICloudSharingControllerDelegate"

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 UICloudSharingControllerDelegate

Implementations on Foreign Types§

source§

impl<T> UICloudSharingControllerDelegate for ProtocolObject<T>

Implementors§