pub enum FileSystemMetadata {
Directory,
File {
executable: bool,
length: u64,
},
Symlink {
target_path: Utf8PathBuf,
},
}Variants§
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 moreAuto 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