pub enum ExecParseError {
InvalidFormat {
reason: String,
path: Box<Path>,
},
InvalidExecArgs {
path: Box<Path>,
},
ExecFieldNotFound {
path: Box<Path>,
},
}Variants§
Trait Implementations§
Source§impl Debug for ExecParseError
impl Debug for ExecParseError
Source§impl Display for ExecParseError
impl Display for ExecParseError
Source§impl Error for ExecParseError
impl Error for ExecParseError
1.30.0 · 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<ExecParseError> for Error
impl From<ExecParseError> for Error
Source§fn from(source: ExecParseError) -> Self
fn from(source: ExecParseError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for ExecParseError
impl RefUnwindSafe for ExecParseError
impl Send for ExecParseError
impl Sync for ExecParseError
impl Unpin for ExecParseError
impl UnwindSafe for ExecParseError
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