pub enum VDirEntry {
Directory(String),
File(String),
Symlink(String),
}Variants§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for VDirEntry
impl RefUnwindSafe for VDirEntry
impl Send for VDirEntry
impl Sync for VDirEntry
impl Unpin for VDirEntry
impl UnwindSafe for VDirEntry
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