pub enum GraphError {
DependencyMissing {
module: &'static str,
missing: &'static str,
},
CycleDetected {
cycle: Vec<&'static str>,
},
}Expand description
Errors from graph validation.
Variants§
DependencyMissing
A module depends on an unregistered module.
CycleDetected
A dependency cycle was detected.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for GraphError
impl RefUnwindSafe for GraphError
impl Send for GraphError
impl Sync for GraphError
impl Unpin for GraphError
impl UnsafeUnpin for GraphError
impl UnwindSafe for GraphError
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