pub unsafe trait NSFileProviderUserInteractionSuppressing: NSObjectProtocol {
    // Provided methods
    unsafe fn setInteractionSuppressed_forIdentifier(
        &self,
        suppression: bool,
        suppression_identifier: &NSString
    )
       where Self: Sized + Message { ... }
    unsafe fn isInteractionSuppressedForIdentifier(
        &self,
        suppression_identifier: &NSString
    ) -> bool
       where Self: Sized + Message { ... }
}
Available on crate feature NSFileProviderReplicatedExtension only.

Provided Methods§

source

unsafe fn setInteractionSuppressed_forIdentifier( &self, suppression: bool, suppression_identifier: &NSString )
where Self: Sized + Message,

source

unsafe fn isInteractionSuppressedForIdentifier( &self, suppression_identifier: &NSString ) -> bool
where Self: Sized + Message,

Trait Implementations§

source§

impl ProtocolType for dyn NSFileProviderUserInteractionSuppressing

source§

const NAME: &'static str = "NSFileProviderUserInteractionSuppressing"

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 NSFileProviderUserInteractionSuppressing

Implementations on Foreign Types§

source§

impl<T> NSFileProviderUserInteractionSuppressing for ProtocolObject<T>

Implementors§