pub enum PathParseError {
NoMatch,
VarCountMismatch {
tuple_size: usize,
var_count: usize,
},
FromStr(Box<dyn Error + Send + Sync>),
}
Variants§
Trait Implementations§
Source§impl Debug for PathParseError
impl Debug for PathParseError
Auto Trait Implementations§
impl Freeze for PathParseError
impl !RefUnwindSafe for PathParseError
impl Send for PathParseError
impl Sync for PathParseError
impl Unpin for PathParseError
impl !UnwindSafe for PathParseError
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