pub enum LoadMetaContentsError {
Read(ReadError),
Parse(MetaContentsError),
}
Expand description
An error encountered while reading/parsing the package’s meta/contents file
Variants§
Read(ReadError)
Parse(MetaContentsError)
Trait Implementations§
source§impl Debug for LoadMetaContentsError
impl Debug for LoadMetaContentsError
source§impl Display for LoadMetaContentsError
impl Display for LoadMetaContentsError
source§impl Error for LoadMetaContentsError
impl Error for LoadMetaContentsError
source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
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()
Auto Trait Implementations§
impl Freeze for LoadMetaContentsError
impl !RefUnwindSafe for LoadMetaContentsError
impl Send for LoadMetaContentsError
impl Sync for LoadMetaContentsError
impl Unpin for LoadMetaContentsError
impl !UnwindSafe for LoadMetaContentsError
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