pub unsafe trait NSErrorNSFileProviderError: ClassType {
    // Provided methods
    unsafe fn fileProviderErrorForCollisionWithItem(
        existing_item: &NSFileProviderItem
    ) -> Id<Self>
       where Self: Sized + ClassType { ... }
    unsafe fn fileProviderErrorForNonExistentItemWithIdentifier(
        item_identifier: &NSFileProviderItemIdentifier
    ) -> Id<Self>
       where Self: Sized + ClassType { ... }
    unsafe fn fileProviderErrorForRejectedDeletionOfItem(
        updated_version: &NSFileProviderItem
    ) -> Id<Self>
       where Self: Sized + ClassType { ... }
}
Available on crate feature NSFileProviderError only.
Expand description

Category “NSFileProviderError” on NSError.

Provided Methods§

source

unsafe fn fileProviderErrorForCollisionWithItem( existing_item: &NSFileProviderItem ) -> Id<Self>
where Self: Sized + ClassType,

Available on crate feature NSFileProviderItem only.
source

unsafe fn fileProviderErrorForNonExistentItemWithIdentifier( item_identifier: &NSFileProviderItemIdentifier ) -> Id<Self>
where Self: Sized + ClassType,

Available on crate feature NSFileProviderItem only.
source

unsafe fn fileProviderErrorForRejectedDeletionOfItem( updated_version: &NSFileProviderItem ) -> Id<Self>
where Self: Sized + ClassType,

Available on crate feature NSFileProviderItem only.

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

impl NSErrorNSFileProviderError for NSError

Implementors§