pub enum VecSingletonError<A> {
Arg(A),
IncorrectNumberOfArguments {
number_of_arguments: usize,
name: String,
},
}
Variants§
Trait Implementations§
Source§impl<A: Debug> Debug for VecSingletonError<A>
impl<A: Debug> Debug for VecSingletonError<A>
Auto Trait Implementations§
impl<A> Freeze for VecSingletonError<A>where
A: Freeze,
impl<A> RefUnwindSafe for VecSingletonError<A>where
A: RefUnwindSafe,
impl<A> Send for VecSingletonError<A>where
A: Send,
impl<A> Sync for VecSingletonError<A>where
A: Sync,
impl<A> Unpin for VecSingletonError<A>where
A: Unpin,
impl<A> UnwindSafe for VecSingletonError<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