Enum coins_core::ser::SerError
source · [−]pub enum SerError {
NonMinimalVarInt,
IoError(IOError),
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(IOError)
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
Fields
expected: usize
The number of items expected
got: usize
The number of items succesfully deserialized
Thrown when ReadSeqMode::Exactly
reads fewer items than expected.
Trait Implementations
sourceimpl Error for SerError
impl Error for SerError
sourcefn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
The lower-level source of this error, if any. Read more
sourcefn backtrace(&self) -> Option<&Backtrace>
fn backtrace(&self) -> Option<&Backtrace>
🔬 This is a nightly-only experimental API. (
backtrace
)Returns a stack backtrace, if available, of where this error occurred. Read more
1.0.0 · sourcefn description(&self) -> &str
fn description(&self) -> &str
👎 Deprecated since 1.42.0:
use the Display impl or to_string()
sourceimpl From<DecodeError> for SerError
impl From<DecodeError> for SerError
sourcefn from(source: DecodeError) -> Self
fn from(source: DecodeError) -> Self
Converts to this type from the input type.
sourceimpl From<FromHexError> for SerError
impl From<FromHexError> for SerError
sourcefn from(source: FromHexError) -> Self
fn from(source: FromHexError) -> Self
Converts to this type from the input type.
Auto Trait Implementations
impl !RefUnwindSafe for SerError
impl Send for SerError
impl Sync for SerError
impl Unpin for SerError
impl !UnwindSafe for SerError
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