pub enum DirOrFile {
Dir(Dir),
File(FilePath),
}Expand description
The contents of a directory, being a directory or a file.
Variants§
Implementations§
Trait Implementations§
impl Eq for DirOrFile
Source§impl Ord for DirOrFile
impl Ord for DirOrFile
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialOrd for DirOrFile
impl PartialOrd for DirOrFile
impl StructuralPartialEq for DirOrFile
Auto Trait Implementations§
impl Freeze for DirOrFile
impl RefUnwindSafe for DirOrFile
impl Send for DirOrFile
impl Sync for DirOrFile
impl Unpin for DirOrFile
impl UnsafeUnpin for DirOrFile
impl UnwindSafe for DirOrFile
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