pub struct MemoryFileSystemSnapshotMetadata {
pub mode: u32,
pub uid: u32,
pub gid: u32,
pub nlink: u64,
pub ino: u64,
pub atime_ms: u64,
pub atime_nsec: u32,
pub mtime_ms: u64,
pub mtime_nsec: u32,
pub ctime_ms: u64,
pub ctime_nsec: u32,
pub birthtime_ms: u64,
}Fields§
§mode: u32§uid: u32§gid: u32§nlink: u64§ino: u64§atime_ms: u64§atime_nsec: u32§mtime_ms: u64§mtime_nsec: u32§ctime_ms: u64§ctime_nsec: u32§birthtime_ms: u64Trait Implementations§
Source§impl Clone for MemoryFileSystemSnapshotMetadata
impl Clone for MemoryFileSystemSnapshotMetadata
Source§fn clone(&self) -> MemoryFileSystemSnapshotMetadata
fn clone(&self) -> MemoryFileSystemSnapshotMetadata
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 MemoryFileSystemSnapshotMetadata
impl<'de> Deserialize<'de> for MemoryFileSystemSnapshotMetadata
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 MemoryFileSystemSnapshotMetadata
Source§impl PartialEq for MemoryFileSystemSnapshotMetadata
impl PartialEq for MemoryFileSystemSnapshotMetadata
Source§fn eq(&self, other: &MemoryFileSystemSnapshotMetadata) -> bool
fn eq(&self, other: &MemoryFileSystemSnapshotMetadata) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for MemoryFileSystemSnapshotMetadata
Auto Trait Implementations§
impl Freeze for MemoryFileSystemSnapshotMetadata
impl RefUnwindSafe for MemoryFileSystemSnapshotMetadata
impl Send for MemoryFileSystemSnapshotMetadata
impl Sync for MemoryFileSystemSnapshotMetadata
impl Unpin for MemoryFileSystemSnapshotMetadata
impl UnsafeUnpin for MemoryFileSystemSnapshotMetadata
impl UnwindSafe for MemoryFileSystemSnapshotMetadata
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