pub enum FoundType {
File(PathBuf),
Directory(PathBuf),
}
Expand description
FoundType
indicates what type of entry was found
Variants§
File(PathBuf)
An entry in the Simpath
of type File
Directory(PathBuf)
An entry in the Simpath
of type Directory
Trait Implementations§
impl StructuralPartialEq for FoundType
Auto Trait Implementations§
impl Freeze for FoundType
impl RefUnwindSafe for FoundType
impl Send for FoundType
impl Sync for FoundType
impl Unpin for FoundType
impl UnwindSafe for FoundType
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