pub enum SerError {
NonMinimalVarInt,
IoError(Error),
FromHexError(FromHexError),
DecodeError(DecodeError),
ComponentError(String),
InsufficientSeqItems {
expected: usize,
got: usize,
},
}Expand description
Erros related to serialization of types.
Variants§
NonMinimalVarInt
VarInts must be minimal.
IoError(Error)
IoError bubbled up from a Write passed to a ByteFormat::write_to implementation.
FromHexError(FromHexError)
deserialize_hex encountered an error on its input.
DecodeError(DecodeError)
deserialize_base64 encountered an error on its input.
ComponentError(String)
An error by a component call in data structure (de)serialization
InsufficientSeqItems
Thrown when ReadSeqMode::Exactly reads fewer items than expected.
Trait Implementations§
Source§impl Error for SerError
impl Error for SerError
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()
Source§impl From<DecodeError> for SerError
impl From<DecodeError> for SerError
Source§fn from(source: DecodeError) -> Self
fn from(source: DecodeError) -> Self
Converts to this type from the input type.
Source§impl From<FromHexError> for SerError
impl From<FromHexError> for SerError
Source§fn from(source: FromHexError) -> Self
fn from(source: FromHexError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for SerError
impl !RefUnwindSafe for SerError
impl Send for SerError
impl Sync for SerError
impl Unpin for SerError
impl !UnwindSafe for SerError
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