pub enum InspectPathError {
ParseInt(ParseIntError),
ParseGen,
Io(Error),
PathTypeError,
InvalidPath(String),
General(String),
}Variants§
Trait Implementations§
Source§impl Debug for InspectPathError
impl Debug for InspectPathError
Source§impl Display for InspectPathError
impl Display for InspectPathError
Source§impl Error for InspectPathError
impl Error for InspectPathError
Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Source§impl From<Error> for InspectPathError
impl From<Error> for InspectPathError
Source§impl From<ParseIntError> for InspectPathError
impl From<ParseIntError> for InspectPathError
Source§fn from(source: ParseIntError) -> Self
fn from(source: ParseIntError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for InspectPathError
impl !RefUnwindSafe for InspectPathError
impl Send for InspectPathError
impl Sync for InspectPathError
impl Unpin for InspectPathError
impl UnsafeUnpin for InspectPathError
impl !UnwindSafe for InspectPathError
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