pub unsafe trait NSFileProviderIncrementalContentFetching: NSObjectProtocol {
    // Provided method
    unsafe fn fetchContentsForItemWithIdentifier_version_usingExistingContentsAtURL_existingVersion_request_completionHandler(
        &self,
        item_identifier: &NSFileProviderItemIdentifier,
        requested_version: Option<&NSFileProviderItemVersion>,
        existing_contents: &NSURL,
        existing_version: &NSFileProviderItemVersion,
        request: &NSFileProviderRequest,
        completion_handler: &Block<dyn Fn(*mut NSURL, *mut NSFileProviderItem, *mut NSError)>
    ) -> Id<NSProgress>
       where Self: Sized + Message { ... }
}
Available on crate feature NSFileProviderReplicatedExtension only.

Provided Methods§

source

unsafe fn fetchContentsForItemWithIdentifier_version_usingExistingContentsAtURL_existingVersion_request_completionHandler( &self, item_identifier: &NSFileProviderItemIdentifier, requested_version: Option<&NSFileProviderItemVersion>, existing_contents: &NSURL, existing_version: &NSFileProviderItemVersion, request: &NSFileProviderRequest, completion_handler: &Block<dyn Fn(*mut NSURL, *mut NSFileProviderItem, *mut NSError)> ) -> Id<NSProgress>
where Self: Sized + Message,

Available on crate features NSFileProviderItem and NSFileProviderRequest and block2 only.

Trait Implementations§

source§

impl ProtocolType for dyn NSFileProviderIncrementalContentFetching

source§

const NAME: &'static str = "NSFileProviderIncrementalContentFetching"

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 NSFileProviderIncrementalContentFetching

Implementations on Foreign Types§

source§

impl<T> NSFileProviderIncrementalContentFetching for ProtocolObject<T>

Implementors§