pub struct EntryInfo {
pub name: String,
pub size: u64,
pub is_directory: bool,
}Expand description
One entry as returned by Vault::list.
Fields§
§name: StringFull vault-relative path.
size: u64Original size in bytes.
is_directory: boolDirectory placeholder or file.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for EntryInfo
impl RefUnwindSafe for EntryInfo
impl Send for EntryInfo
impl Sync for EntryInfo
impl Unpin for EntryInfo
impl UnsafeUnpin for EntryInfo
impl UnwindSafe for EntryInfo
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