pub struct FolderEntry {
pub name: String,
pub size: u64,
pub is_dir: bool,
pub handle: u32,
}Expand description
One child returned by folder_entries.
Fields§
§name: String§size: u64§is_dir: bool§handle: u32Auto Trait Implementations§
impl Freeze for FolderEntry
impl RefUnwindSafe for FolderEntry
impl Send for FolderEntry
impl Sync for FolderEntry
impl Unpin for FolderEntry
impl UnsafeUnpin for FolderEntry
impl UnwindSafe for FolderEntry
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