pub enum ParseOutputSpecError {
OutputName {
idx: usize,
err: ParseOutputNameError,
},
}Variants§
OutputName
Trait Implementations§
Source§impl Debug for ParseOutputSpecError
impl Debug for ParseOutputSpecError
Source§impl Display for ParseOutputSpecError
impl Display for ParseOutputSpecError
Source§impl Error for ParseOutputSpecError
impl Error for ParseOutputSpecError
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<ParseOutputSpecError> for ParseDerivedPathError
impl From<ParseOutputSpecError> for ParseDerivedPathError
Source§fn from(source: ParseOutputSpecError) -> Self
fn from(source: ParseOutputSpecError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for ParseOutputSpecError
impl RefUnwindSafe for ParseOutputSpecError
impl Send for ParseOutputSpecError
impl Sync for ParseOutputSpecError
impl Unpin for ParseOutputSpecError
impl UnsafeUnpin for ParseOutputSpecError
impl UnwindSafe for ParseOutputSpecError
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