pub enum ArrayVectorError {
IntoInnerIncomplete,
ReserveOverflow,
}Expand description
Errors of ArrayVector.
Variants§
IntoInnerIncomplete
Inner array is not totally full
ReserveOverflow
It was not possible to reserve more memory
Trait Implementations§
Source§impl Debug for ArrayVectorError
impl Debug for ArrayVectorError
Source§impl From<ArrayVectorError> for Error
impl From<ArrayVectorError> for Error
Source§fn from(from: ArrayVectorError) -> Self
fn from(from: ArrayVectorError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for ArrayVectorError
impl RefUnwindSafe for ArrayVectorError
impl Send for ArrayVectorError
impl Sync for ArrayVectorError
impl Unpin for ArrayVectorError
impl UnwindSafe for ArrayVectorError
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