pub struct FileMeta {
pub path: PathBuf,
pub is_dir: bool,
pub is_file: bool,
pub is_symlink: bool,
pub size: u64,
pub modified: Option<SystemTime>,
}Expand description
Metadata for a remote path.
Fields§
§path: PathBuf§is_dir: bool§is_file: bool§is_symlink: bool§size: u64§modified: Option<SystemTime>Trait Implementations§
Auto Trait Implementations§
impl Freeze for FileMeta
impl RefUnwindSafe for FileMeta
impl Send for FileMeta
impl Sync for FileMeta
impl Unpin for FileMeta
impl UnsafeUnpin for FileMeta
impl UnwindSafe for FileMeta
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