pub enum TreeError {
IO(Error),
Glob(GlobError),
Pattern(PatternError),
}Variants§
Trait Implementations§
Source§impl From<PatternError> for TreeError
impl From<PatternError> for TreeError
Source§fn from(e: PatternError) -> Self
fn from(e: PatternError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for TreeError
impl !RefUnwindSafe for TreeError
impl Send for TreeError
impl Sync for TreeError
impl Unpin for TreeError
impl !UnwindSafe for TreeError
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