pub enum V2SerializeError {
CountNotSerializable,
UsizeTypeTooSmall,
IoError(Error),
}
Expand description
Errors that occur during serialization.
Variants§
CountNotSerializable
A count above i64::max_value() cannot be zig-zag encoded, and therefore cannot be serialized.
UsizeTypeTooSmall
Internal calculations cannot be represented in usize
. Use smaller histograms or beefier
hardware.
IoError(Error)
An i/o operation failed.
Trait Implementations§
source§impl Debug for V2SerializeError
impl Debug for V2SerializeError
source§impl Display for V2SerializeError
impl Display for V2SerializeError
source§impl Error for V2SerializeError
impl Error for V2SerializeError
source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Auto Trait Implementations§
impl Freeze for V2SerializeError
impl !RefUnwindSafe for V2SerializeError
impl Send for V2SerializeError
impl Sync for V2SerializeError
impl Unpin for V2SerializeError
impl !UnwindSafe for V2SerializeError
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