pub enum DirEntryValue {
String(String),
Boolean(bool),
SystemTime(SystemTime),
U64(u64),
}
Expand description
Available types for directory entry.
Variants§
String(String)
String type
Boolean(bool)
Boolean type
SystemTime(SystemTime)
SystemTime type
U64(u64)
u64 type
Auto Trait Implementations§
impl Freeze for DirEntryValue
impl RefUnwindSafe for DirEntryValue
impl Send for DirEntryValue
impl Sync for DirEntryValue
impl Unpin for DirEntryValue
impl UnwindSafe for DirEntryValue
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