pub enum Error<Parameter> {
MissingNode(u64),
InvalidParameter(u64, Parameter),
CycleDetected,
}
Variants§
Trait Implementations§
impl<Parameter: Eq> Eq for Error<Parameter>
impl<Parameter> StructuralPartialEq for Error<Parameter>
Auto Trait Implementations§
impl<Parameter> Freeze for Error<Parameter>where
Parameter: Freeze,
impl<Parameter> RefUnwindSafe for Error<Parameter>where
Parameter: RefUnwindSafe,
impl<Parameter> Send for Error<Parameter>where
Parameter: Send,
impl<Parameter> Sync for Error<Parameter>where
Parameter: Sync,
impl<Parameter> Unpin for Error<Parameter>where
Parameter: Unpin,
impl<Parameter> UnwindSafe for Error<Parameter>where
Parameter: 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