pub enum MemoryFileSystemSnapshotInodeKind {
File {
data: Vec<u8>,
},
Directory,
SymbolicLink {
target: String,
},
}Variants§
Trait Implementations§
Source§impl Clone for MemoryFileSystemSnapshotInodeKind
impl Clone for MemoryFileSystemSnapshotInodeKind
Source§fn clone(&self) -> MemoryFileSystemSnapshotInodeKind
fn clone(&self) -> MemoryFileSystemSnapshotInodeKind
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<'de> Deserialize<'de> for MemoryFileSystemSnapshotInodeKind
impl<'de> Deserialize<'de> for MemoryFileSystemSnapshotInodeKind
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for MemoryFileSystemSnapshotInodeKind
Source§impl PartialEq for MemoryFileSystemSnapshotInodeKind
impl PartialEq for MemoryFileSystemSnapshotInodeKind
Source§fn eq(&self, other: &MemoryFileSystemSnapshotInodeKind) -> bool
fn eq(&self, other: &MemoryFileSystemSnapshotInodeKind) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for MemoryFileSystemSnapshotInodeKind
Auto Trait Implementations§
impl Freeze for MemoryFileSystemSnapshotInodeKind
impl RefUnwindSafe for MemoryFileSystemSnapshotInodeKind
impl Send for MemoryFileSystemSnapshotInodeKind
impl Sync for MemoryFileSystemSnapshotInodeKind
impl Unpin for MemoryFileSystemSnapshotInodeKind
impl UnsafeUnpin for MemoryFileSystemSnapshotInodeKind
impl UnwindSafe for MemoryFileSystemSnapshotInodeKind
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