pub enum StdLibError {
ManifestError(ManifestError),
InstallError(Error),
}Expand description
Standard library error.
Variants§
ManifestError(ManifestError)
An error while processing the manifest.toml file.
InstallError(Error)
Error during install or uninstall.
Trait Implementations§
Source§impl Debug for StdLibError
impl Debug for StdLibError
Source§impl Display for StdLibError
impl Display for StdLibError
Source§impl Error for StdLibError
impl Error for StdLibError
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()
Auto Trait Implementations§
impl Freeze for StdLibError
impl !RefUnwindSafe for StdLibError
impl Send for StdLibError
impl Sync for StdLibError
impl Unpin for StdLibError
impl UnsafeUnpin for StdLibError
impl !UnwindSafe for StdLibError
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