pub enum YarnLockError {
Parser {
source: Err<VerboseError<String>>,
},
}
Expand description
Parser error
Variants§
Parser
Fields
§
source: Err<VerboseError<String>>
Trait Implementations§
Source§impl Debug for YarnLockError
impl Debug for YarnLockError
Source§impl Display for YarnLockError
impl Display for YarnLockError
Source§impl Error for YarnLockError
impl Error for YarnLockError
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<Err<VerboseError<String>>> for YarnLockError
impl From<Err<VerboseError<String>>> for YarnLockError
Auto Trait Implementations§
impl Freeze for YarnLockError
impl RefUnwindSafe for YarnLockError
impl Send for YarnLockError
impl Sync for YarnLockError
impl Unpin for YarnLockError
impl UnwindSafe for YarnLockError
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