pub enum GenericPath {
File(GenericFile),
Dir(GenericDir),
}Variants§
File(GenericFile)
Dir(GenericDir)
Trait Implementations§
Source§impl Debug for GenericPath
impl Debug for GenericPath
Source§impl Display for GenericPath
impl Display for GenericPath
Source§impl TryFrom<&Path> for GenericPath
impl TryFrom<&Path> for GenericPath
Auto Trait Implementations§
impl Freeze for GenericPath
impl RefUnwindSafe for GenericPath
impl Send for GenericPath
impl Sync for GenericPath
impl Unpin for GenericPath
impl UnwindSafe for GenericPath
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