pub enum ZigZagError {
BufferTooSmall {
needed: usize,
actual: usize,
},
}Expand description
Error type for ZigZag operations
Variants§
BufferTooSmall
Output buffer is too small to hold all converted values
Implementations§
Trait Implementations§
Source§impl Clone for ZigZagError
impl Clone for ZigZagError
Source§fn clone(&self) -> ZigZagError
fn clone(&self) -> ZigZagError
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ZigZagError
impl Debug for ZigZagError
Source§impl PartialEq for ZigZagError
impl PartialEq for ZigZagError
impl Copy for ZigZagError
impl Eq for ZigZagError
impl StructuralPartialEq for ZigZagError
Auto Trait Implementations§
impl Freeze for ZigZagError
impl RefUnwindSafe for ZigZagError
impl Send for ZigZagError
impl Sync for ZigZagError
impl Unpin for ZigZagError
impl UnwindSafe for ZigZagError
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