pub enum Error<'a, T: Clone + PartialEq + Hash + Ord + Debug + Display> {
CyclesDetected(HashSet<Vec<&'a T>>),
}
Expand description
Errors produced by DirectedGraph
.
Variants§
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl<'a, T> Freeze for Error<'a, T>
impl<'a, T> RefUnwindSafe for Error<'a, T>where
T: RefUnwindSafe,
impl<'a, T> Send for Error<'a, T>where
T: Sync,
impl<'a, T> Sync for Error<'a, T>where
T: Sync,
impl<'a, T> Unpin for Error<'a, T>
impl<'a, T> UnwindSafe for Error<'a, T>where
T: RefUnwindSafe,
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