pub enum Error<N: Node> {
DependencyLoop(Vec<N>),
VisitNode,
Unknown,
}Variants§
Trait Implementations§
impl<N: Node> StructuralPartialEq for Error<N>
Auto Trait Implementations§
impl<N> Freeze for Error<N>
impl<N> RefUnwindSafe for Error<N>where
N: RefUnwindSafe,
impl<N> Send for Error<N>where
N: Send,
impl<N> Sync for Error<N>where
N: Sync,
impl<N> Unpin for Error<N>where
N: Unpin,
impl<N> UnwindSafe for Error<N>where
N: UnwindSafe,
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