pub unsafe trait NSFileProviderTestingLookup: NSFileProviderTestingOperation {
// Provided methods
unsafe fn side(&self) -> NSFileProviderTestingOperationSide
where Self: Sized + Message { ... }
unsafe fn itemIdentifier(&self) -> Retained<NSFileProviderItemIdentifier>
where Self: Sized + Message { ... }
}Available on crate feature
NSFileProviderTesting only.Expand description
This operation causes the system to lookup an item.
See also Apple’s documentation
Provided Methods§
Sourceunsafe fn side(&self) -> NSFileProviderTestingOperationSide
unsafe fn side(&self) -> NSFileProviderTestingOperationSide
Side of the event.
Sourceunsafe fn itemIdentifier(&self) -> Retained<NSFileProviderItemIdentifier>
Available on crate feature NSFileProviderItem only.
unsafe fn itemIdentifier(&self) -> Retained<NSFileProviderItemIdentifier>
NSFileProviderItem only.Identifier of the affected item.
Trait Implementations§
impl<T> ImplementedBy<T> for dyn NSFileProviderTestingLookup
Source§impl ProtocolType for dyn NSFileProviderTestingLookup
impl ProtocolType for dyn NSFileProviderTestingLookup
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".