pub struct File {
pub buffer: Vec<u8>,
pub path: String,
pub mode: Option<u32>,
pub is_dir: bool,
pub last_modified: Option<u64>,
}Fields§
§buffer: Vec<u8>§path: String§mode: Option<u32>§is_dir: bool§last_modified: Option<u64>Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for File
impl RefUnwindSafe for File
impl Send for File
impl Sync for File
impl Unpin for File
impl UnwindSafe for File
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