pub enum LoadManifestError {
Other(Box<dyn Error>),
}Variants§
Trait Implementations§
Source§impl Debug for LoadManifestError
impl Debug for LoadManifestError
Source§impl Display for LoadManifestError
impl Display for LoadManifestError
Source§impl Error for LoadManifestError
impl Error for LoadManifestError
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<Error> for LoadManifestError
Available on crate feature std only.
impl From<Error> for LoadManifestError
Available on crate feature
std only.Source§impl From<Error> for LoadManifestError
impl From<Error> for LoadManifestError
Auto Trait Implementations§
impl !RefUnwindSafe for LoadManifestError
impl !Send for LoadManifestError
impl !Sync for LoadManifestError
impl !UnwindSafe for LoadManifestError
impl Freeze for LoadManifestError
impl Unpin for LoadManifestError
impl UnsafeUnpin for LoadManifestError
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