pub struct FileEntry {
pub name: String,
pub relative_path: String,
pub parent_relative_path: String,
pub kind: FileKind,
pub is_directory: bool,
pub in_batch: bool,
pub size_bytes: u64,
pub modified_unix_seconds: Option<u64>,
pub size_label: String,
pub modified_label: String,
pub permissions_label: String,
}Fields§
§name: String§relative_path: String§parent_relative_path: String§kind: FileKind§is_directory: bool§in_batch: bool§size_bytes: u64§modified_unix_seconds: Option<u64>§size_label: String§modified_label: String§permissions_label: StringTrait Implementations§
impl Eq for FileEntry
impl StructuralPartialEq 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