pub struct FileSystemMetadata {
pub provider_id: String,
pub schemes: Vec<String>,
pub capabilities: FileSystemCapabilities,
pub path_semantics: PathSemantics,
pub provider_metadata: Metadata,
}Expand description
Metadata describing one filesystem instance.
Fields§
§provider_id: StringProvider id that created this filesystem.
schemes: Vec<String>Schemes accepted by the provider.
capabilities: FileSystemCapabilitiesCapability hints for this filesystem.
path_semantics: PathSemanticsPath semantics used by this filesystem.
provider_metadata: MetadataProvider-native metadata.
Implementations§
Trait Implementations§
Source§impl Clone for FileSystemMetadata
impl Clone for FileSystemMetadata
Source§fn clone(&self) -> FileSystemMetadata
fn clone(&self) -> FileSystemMetadata
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for FileSystemMetadata
impl Debug for FileSystemMetadata
Source§impl PartialEq for FileSystemMetadata
impl PartialEq for FileSystemMetadata
Source§fn eq(&self, other: &FileSystemMetadata) -> bool
fn eq(&self, other: &FileSystemMetadata) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for FileSystemMetadata
Auto Trait Implementations§
impl Freeze for FileSystemMetadata
impl RefUnwindSafe for FileSystemMetadata
impl Send for FileSystemMetadata
impl Sync for FileSystemMetadata
impl Unpin for FileSystemMetadata
impl UnsafeUnpin for FileSystemMetadata
impl UnwindSafe for FileSystemMetadata
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoValueDefault<T> for T
impl<T> IntoValueDefault<T> for T
Source§fn into_value_default(self) -> T
fn into_value_default(self) -> T
Converts this argument into the default value.