Enum coins_core::ser::SerError
source · 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)>
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