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