pub enum ValidError<A> {
Arg(A),
Invalid(Invalid),
}
Variants§
Trait Implementations§
Source§impl<A: Debug> Debug for ValidError<A>
impl<A: Debug> Debug for ValidError<A>
Source§impl<A> Display for ValidError<A>where
A: Display,
impl<A> Display for ValidError<A>where
A: Display,
Source§impl<A: PartialEq> PartialEq for ValidError<A>
impl<A: PartialEq> PartialEq for ValidError<A>
impl<A: Eq> Eq for ValidError<A>
impl<A> StructuralPartialEq for ValidError<A>
Auto Trait Implementations§
impl<A> Freeze for ValidError<A>where
A: Freeze,
impl<A> RefUnwindSafe for ValidError<A>where
A: RefUnwindSafe,
impl<A> Send for ValidError<A>where
A: Send,
impl<A> Sync for ValidError<A>where
A: Sync,
impl<A> Unpin for ValidError<A>where
A: Unpin,
impl<A> UnwindSafe for ValidError<A>where
A: 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