pub enum ExpectedLengthError {
AtMost(usize),
AtLeast(usize),
Exactly(usize),
}
Expand description
An error type specifying an expected length of a slice in question
Variants§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ExpectedLengthError
impl RefUnwindSafe for ExpectedLengthError
impl Send for ExpectedLengthError
impl Sync for ExpectedLengthError
impl Unpin for ExpectedLengthError
impl UnwindSafe for ExpectedLengthError
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