pub enum CatalogError {
EmptyCatalog,
EmptyGroup,
SourceError(SourceError),
NotFound(PathBuf),
IOError(Error),
YamlError(Error),
}Variants§
Trait Implementations§
Source§impl Debug for CatalogError
impl Debug for CatalogError
Source§impl Display for CatalogError
impl Display for CatalogError
Source§impl Error for CatalogError
impl Error for CatalogError
1.30.0 · 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<CatalogError> for ArchetectError
impl From<CatalogError> for ArchetectError
Source§fn from(source: CatalogError) -> Self
fn from(source: CatalogError) -> Self
Converts to this type from the input type.
Source§impl From<Error> for CatalogError
impl From<Error> for CatalogError
Source§impl From<Error> for CatalogError
impl From<Error> for CatalogError
Source§impl From<SourceError> for CatalogError
impl From<SourceError> for CatalogError
Source§fn from(cause: SourceError) -> Self
fn from(cause: SourceError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for CatalogError
impl !RefUnwindSafe for CatalogError
impl Send for CatalogError
impl Sync for CatalogError
impl Unpin for CatalogError
impl !UnwindSafe for CatalogError
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