pub struct SlotFileMeta {
pub path: PathBuf,
pub mtime_unix_secs: u64,
pub len_bytes: u64,
}Expand description
Metadata for one on-disk slot file, gathered by the IO layer.
Fields§
§path: PathBuf§mtime_unix_secs: u64§len_bytes: u64Trait Implementations§
Source§impl Clone for SlotFileMeta
impl Clone for SlotFileMeta
Source§fn clone(&self) -> SlotFileMeta
fn clone(&self) -> SlotFileMeta
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 SlotFileMeta
impl Debug for SlotFileMeta
Source§impl PartialEq for SlotFileMeta
impl PartialEq for SlotFileMeta
Source§fn eq(&self, other: &SlotFileMeta) -> bool
fn eq(&self, other: &SlotFileMeta) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for SlotFileMeta
impl StructuralPartialEq for SlotFileMeta
Auto Trait Implementations§
impl Freeze for SlotFileMeta
impl RefUnwindSafe for SlotFileMeta
impl Send for SlotFileMeta
impl Sync for SlotFileMeta
impl Unpin for SlotFileMeta
impl UnsafeUnpin for SlotFileMeta
impl UnwindSafe for SlotFileMeta
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