pub unsafe trait NSFileProviderChangeObserver: NSObjectProtocol {
    // Provided methods
    unsafe fn didUpdateItems(
        &self,
        updated_items: &NSArray<ProtocolObject<dyn NSFileProviderItemProtocol>>
    )
       where Self: Sized + Message { ... }
    unsafe fn didDeleteItemsWithIdentifiers(
        &self,
        deleted_item_identifiers: &NSArray<NSFileProviderItemIdentifier>
    )
       where Self: Sized + Message { ... }
    unsafe fn finishEnumeratingChangesUpToSyncAnchor_moreComing(
        &self,
        anchor: &NSFileProviderSyncAnchor,
        more_coming: bool
    )
       where Self: Sized + Message { ... }
    unsafe fn finishEnumeratingWithError(&self, error: &NSError)
       where Self: Sized + Message { ... }
    unsafe fn suggestedBatchSize(&self) -> NSInteger
       where Self: Sized + Message { ... }
}
Available on crate feature NSFileProviderEnumerating only.

Provided Methods§

source

unsafe fn didUpdateItems( &self, updated_items: &NSArray<ProtocolObject<dyn NSFileProviderItemProtocol>> )
where Self: Sized + Message,

Available on crate feature NSFileProviderItem only.
source

unsafe fn didDeleteItemsWithIdentifiers( &self, deleted_item_identifiers: &NSArray<NSFileProviderItemIdentifier> )
where Self: Sized + Message,

Available on crate feature NSFileProviderItem only.
source

unsafe fn finishEnumeratingChangesUpToSyncAnchor_moreComing( &self, anchor: &NSFileProviderSyncAnchor, more_coming: bool )
where Self: Sized + Message,

source

unsafe fn finishEnumeratingWithError(&self, error: &NSError)
where Self: Sized + Message,

source

unsafe fn suggestedBatchSize(&self) -> NSInteger
where Self: Sized + Message,

Trait Implementations§

source§

impl ProtocolType for dyn NSFileProviderChangeObserver

source§

const NAME: &'static str = "NSFileProviderChangeObserver"

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 NSFileProviderChangeObserver

Implementations on Foreign Types§

source§

impl<T> NSFileProviderChangeObserver for ProtocolObject<T>

Implementors§