pub struct LsResult {
pub base: HashMap<DirEntryAttr, DirEntryValue>,
pub items: Vec<HashMap<DirEntryAttr, DirEntryValue>>,
}
Expand description
Result returned by the ls
function.
Fields§
§base: HashMap<DirEntryAttr, DirEntryValue>
Base folder target path
items: Vec<HashMap<DirEntryAttr, DirEntryValue>>
Collection directory entry with information.
Auto Trait Implementations§
impl Freeze for LsResult
impl RefUnwindSafe for LsResult
impl Send for LsResult
impl Sync for LsResult
impl Unpin for LsResult
impl UnwindSafe for LsResult
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