pub unsafe trait NSFileProviderTestingContentFetch: 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 fetch the content of an item.
See also Apple’s documentation
Provided Methods§
Sourceunsafe fn side(&self) -> NSFileProviderTestingOperationSide
unsafe fn side(&self) -> NSFileProviderTestingOperationSide
The side of the operation.
Sourceunsafe fn itemIdentifier(&self) -> Retained<NSFileProviderItemIdentifier>
Available on crate feature NSFileProviderItem only.
unsafe fn itemIdentifier(&self) -> Retained<NSFileProviderItemIdentifier>
NSFileProviderItem only.The identifier of the item.
Trait Implementations§
impl<T> ImplementedBy<T> for dyn NSFileProviderTestingContentFetch
Source§impl ProtocolType for dyn NSFileProviderTestingContentFetch
impl ProtocolType for dyn NSFileProviderTestingContentFetch
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".