#[non_exhaustive]pub enum Error {
Parse(Error),
Io(Error),
Workspace(Box<Error>),
InheritedUnknownValue,
WorkspaceIntegrity(String),
Other(&'static str),
}
Expand description
In this crate’s Result
s.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Parse(Error)
TOML parsing errors
Io(Error)
Filesystem access errors
Workspace(Box<Error>)
Manifest uses workspace inheritance, and the workspace failed to load
InheritedUnknownValue
Manifest uses workspace inheritance, and the data hasn’t been inherited yet
WorkspaceIntegrity(String)
Manifest uses workspace inheritance, but the root workspace is missing data
Other(&'static str)
???
Trait Implementations§
Source§impl Error for Error
impl Error for Error
Source§fn source(&self) -> Option<&(dyn StdErr + 'static)>
fn source(&self) -> Option<&(dyn StdErr + '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 Error
impl !RefUnwindSafe for Error
impl Send for Error
impl Sync for Error
impl Unpin for Error
impl !UnwindSafe for Error
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