pub enum DependencyError {
CircularDependency(Vec<String>),
ParseRootError(ParseRootError),
ReadFileError(Error),
}
Variants§
Trait Implementations§
Source§impl Debug for DependencyError
impl Debug for DependencyError
Source§impl From<DependencyError> for DepLoaderError
impl From<DependencyError> for DepLoaderError
Source§fn from(e: DependencyError) -> Self
fn from(e: DependencyError) -> Self
Converts to this type from the input type.
Source§impl From<ParseRootError> for DependencyError
impl From<ParseRootError> for DependencyError
Source§fn from(err: ParseRootError) -> Self
fn from(err: ParseRootError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for DependencyError
impl !RefUnwindSafe for DependencyError
impl Send for DependencyError
impl Sync for DependencyError
impl Unpin for DependencyError
impl !UnwindSafe for DependencyError
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