pub struct FileStat {
pub inode: InodeId,
pub file_type: FileType,
pub size: u64,
pub blocks: u64,
pub block_size: u32,
pub nlink: u32,
pub permissions: Permissions,
pub created: SystemTime,
pub modified: SystemTime,
pub accessed: SystemTime,
}Expand description
File stat information (like POSIX stat)
Fields§
§inode: InodeId§file_type: FileType§size: u64§blocks: u64§block_size: u32§nlink: u32§permissions: Permissions§created: SystemTime§modified: SystemTime§accessed: SystemTimeTrait Implementations§
Auto Trait Implementations§
impl Freeze for FileStat
impl RefUnwindSafe for FileStat
impl Send for FileStat
impl Sync for FileStat
impl Unpin for FileStat
impl UnsafeUnpin for FileStat
impl UnwindSafe for FileStat
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