pub struct FileItem {
pub name: String,
pub is_folder: bool,
pub size: i64,
}Expand description
Unified file/folder item
Fields§
§name: String§is_folder: bool§size: i64Trait Implementations§
Auto Trait Implementations§
impl Freeze for FileItem
impl RefUnwindSafe for FileItem
impl Send for FileItem
impl Sync for FileItem
impl Unpin for FileItem
impl UnwindSafe for FileItem
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