pub unsafe trait NSFileProviderPartialContentFetching: NSObjectProtocol {
    // Provided method
    unsafe fn fetchPartialContentsForItemWithIdentifier_version_request_minimalRange_aligningTo_options_completionHandler(
        &self,
        item_identifier: &NSFileProviderItemIdentifier,
        requested_version: &NSFileProviderItemVersion,
        request: &NSFileProviderRequest,
        requested_range: NSRange,
        alignment: NSUInteger,
        options: NSFileProviderFetchContentsOptions,
        completion_handler: &Block<dyn Fn(*mut NSURL, *mut NSFileProviderItem, NSRange, NSFileProviderMaterializationFlags, *mut NSError)>
    ) -> Id<NSProgress>
       where Self: Sized + Message { ... }
}
Available on crate feature NSFileProviderReplicatedExtension only.

Provided Methods§

source

unsafe fn fetchPartialContentsForItemWithIdentifier_version_request_minimalRange_aligningTo_options_completionHandler( &self, item_identifier: &NSFileProviderItemIdentifier, requested_version: &NSFileProviderItemVersion, request: &NSFileProviderRequest, requested_range: NSRange, alignment: NSUInteger, options: NSFileProviderFetchContentsOptions, completion_handler: &Block<dyn Fn(*mut NSURL, *mut NSFileProviderItem, NSRange, NSFileProviderMaterializationFlags, *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 NSFileProviderPartialContentFetching

source§

const NAME: &'static str = "NSFileProviderPartialContentFetching"

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 NSFileProviderPartialContentFetching

Implementations on Foreign Types§

source§

impl<T> NSFileProviderPartialContentFetching for ProtocolObject<T>

Implementors§