pub unsafe trait NSCloudSharingServiceDelegate: NSSharingServiceDelegate {
    // Provided methods
    unsafe fn sharingService_didCompleteForItems_error(
        &self,
        sharing_service: &NSSharingService,
        items: &NSArray,
        error: Option<&NSError>
    )
       where Self: Sized + Message { ... }
    unsafe fn optionsForSharingService_shareProvider(
        &self,
        cloud_kit_sharing_service: &NSSharingService,
        provider: &NSItemProvider
    ) -> NSCloudKitSharingServiceOptions
       where Self: Sized + Message { ... }
}
Available on crate feature NSSharingService only.

Provided Methods§

source

unsafe fn sharingService_didCompleteForItems_error( &self, sharing_service: &NSSharingService, items: &NSArray, error: Option<&NSError> )
where Self: Sized + Message,

source

unsafe fn optionsForSharingService_shareProvider( &self, cloud_kit_sharing_service: &NSSharingService, provider: &NSItemProvider ) -> NSCloudKitSharingServiceOptions
where Self: Sized + Message,

Trait Implementations§

source§

impl ProtocolType for dyn NSCloudSharingServiceDelegate

source§

const NAME: &'static str = "NSCloudSharingServiceDelegate"

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 NSCloudSharingServiceDelegate

Implementations on Foreign Types§

source§

impl<T> NSCloudSharingServiceDelegate for ProtocolObject<T>

Implementors§