pub struct FileEntry {
pub path: String,
pub blob_hash: [u8; 32],
pub size: u64,
pub mtime_secs: i64,
pub mtime_nanos: i64,
pub inode: Option<u64>,
pub mode: u32,
}Fields§
§path: String§blob_hash: [u8; 32]§size: u64§mtime_secs: i64§mtime_nanos: i64§inode: Option<u64>§mode: u32Trait Implementations§
impl<'__de> Decode<'__de> for FileEntrywhere
'__de:,
impl Encode for FileEntry
Auto Trait Implementations§
impl Freeze for FileEntry
impl RefUnwindSafe for FileEntry
impl Send for FileEntry
impl Sync for FileEntry
impl Unpin for FileEntry
impl UnsafeUnpin for FileEntry
impl UnwindSafe for FileEntry
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