pub enum TreeType {
File(FileInfo),
Dir(HashMap<String, Vec<TreeType>>),
}Variants§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for TreeType
impl RefUnwindSafe for TreeType
impl Send for TreeType
impl Sync for TreeType
impl Unpin for TreeType
impl UnwindSafe for TreeType
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