pub enum Errors {
NoData,
BufferTooSmall,
InvalidBuffer,
}
Expand description
The errors that may be raised by this crate
Variants
NoData
No data was provided despite some being required
BufferTooSmall
The buffer used for an operation was too small
InvalidBuffer
The buffer used for an operation was malformed or corrupted and did not match the expected content constraints
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for Errors
impl Send for Errors
impl Sync for Errors
impl Unpin for Errors
impl UnwindSafe for Errors
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more