pub enum GlobError {
InvalidPattern(ParsingError),
FailedToGetCurrentDir(Error),
}Expand description
Error occuring during glob execution
Variants§
InvalidPattern(ParsingError)
The provided pattern is invalid
FailedToGetCurrentDir(Error)
Failed to get path to the current directory
Trait Implementations§
Auto Trait Implementations§
impl Freeze for GlobError
impl !RefUnwindSafe for GlobError
impl Send for GlobError
impl Sync for GlobError
impl Unpin for GlobError
impl !UnwindSafe for GlobError
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