pub struct FsEntry {
pub path: String,
pub size: u64,
pub mtime_ms: u64,
pub is_dir: bool,
pub sha256: Option<String>,
}Expand description
One filesystem entry, as reported by stat and by each list item.
The same shape in both so a consumer can hold list items and single lookups in one type.
Fields§
§path: StringRoot-relative path with POSIX separators.
size: u64Size in bytes. Zero for directories.
mtime_ms: u64Modification time, Unix milliseconds.
is_dir: boolWhether this entry is a directory.
sha256: Option<String>Content hash, only when the caller asked for it.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for FsEntry
impl<'de> Deserialize<'de> for FsEntry
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 FsEntry
impl StructuralPartialEq for FsEntry
Auto Trait Implementations§
impl Freeze for FsEntry
impl RefUnwindSafe for FsEntry
impl Send for FsEntry
impl Sync for FsEntry
impl Unpin for FsEntry
impl UnsafeUnpin for FsEntry
impl UnwindSafe for FsEntry
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