pub enum VecError {
Full,
OutOfBounds,
LayoutMismatch,
PayloadTooLarge,
ReadOnly,
IoError(ErrorKind),
}Variants§
Full
OutOfBounds
LayoutMismatch
PayloadTooLarge
ReadOnly
The vec was opened read-only and something tried to write it.
IoError(ErrorKind)
Trait Implementations§
impl Copy for VecError
impl Eq for VecError
impl StructuralPartialEq for VecError
Auto Trait Implementations§
impl Freeze for VecError
impl RefUnwindSafe for VecError
impl Send for VecError
impl Sync for VecError
impl Unpin for VecError
impl UnsafeUnpin for VecError
impl UnwindSafe for VecError
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