pub unsafe trait NSFileProviderServiceSource {
    // Provided methods
    unsafe fn serviceName(&self) -> Id<NSFileProviderServiceName>
       where Self: Sized + Message { ... }
    unsafe fn makeListenerEndpointAndReturnError(
        &self
    ) -> Result<Id<NSXPCListenerEndpoint>, Id<NSError>>
       where Self: Sized + Message { ... }
    unsafe fn isRestricted(&self) -> bool
       where Self: Sized + Message { ... }
}
Available on crate feature NSFileProviderService only.

Provided Methods§

source

unsafe fn serviceName(&self) -> Id<NSFileProviderServiceName>
where Self: Sized + Message,

source

unsafe fn makeListenerEndpointAndReturnError( &self ) -> Result<Id<NSXPCListenerEndpoint>, Id<NSError>>
where Self: Sized + Message,

source

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

Trait Implementations§

source§

impl ProtocolType for dyn NSFileProviderServiceSource

source§

const NAME: &'static str = "NSFileProviderServiceSource"

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 NSFileProviderServiceSource

Implementations on Foreign Types§

source§

impl<T> NSFileProviderServiceSource for ProtocolObject<T>

Implementors§