pub unsafe trait UICloudSharingControllerDelegate: NSObjectProtocol + MainThreadOnly {
// Provided methods
fn cloudSharingController_failedToSaveShareWithError(
&self,
csc: &UICloudSharingController,
error: &NSError,
)
where Self: Sized + Message { ... }
fn itemTitleForCloudSharingController(
&self,
csc: &UICloudSharingController,
) -> Option<Retained<NSString>>
where Self: Sized + Message { ... }
fn itemThumbnailDataForCloudSharingController(
&self,
csc: &UICloudSharingController,
) -> Option<Retained<NSData>>
where Self: Sized + Message { ... }
fn itemTypeForCloudSharingController(
&self,
csc: &UICloudSharingController,
) -> Option<Retained<NSString>>
where Self: Sized + Message { ... }
fn cloudSharingControllerDidSaveShare(&self, csc: &UICloudSharingController)
where Self: Sized + Message { ... }
fn cloudSharingControllerDidStopSharing(
&self,
csc: &UICloudSharingController,
)
where Self: Sized + Message { ... }
}Available on crate feature
UICloudSharingController only.Expand description
Provided Methods§
Available on crate features
UIResponder and UIViewController only.fn itemTitleForCloudSharingController( &self, csc: &UICloudSharingController, ) -> Option<Retained<NSString>>
Available on crate features
UIResponder and UIViewController only.fn itemThumbnailDataForCloudSharingController( &self, csc: &UICloudSharingController, ) -> Option<Retained<NSData>>
Available on crate features
UIResponder and UIViewController only.fn itemTypeForCloudSharingController( &self, csc: &UICloudSharingController, ) -> Option<Retained<NSString>>
Available on crate features
UIResponder and UIViewController only.Available on crate features
UIResponder and UIViewController only.fn cloudSharingControllerDidStopSharing(&self, csc: &UICloudSharingController)
Available on crate features
UIResponder and UIViewController only.Trait Implementations§
impl<T> ImplementedBy<T> for dyn UICloudSharingControllerDelegate
Source§impl ProtocolType for dyn UICloudSharingControllerDelegate
impl ProtocolType for dyn UICloudSharingControllerDelegate
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".