Enum stacks_common::codec::Error
source · pub enum Error {
SerializeError(String),
ReadError(Error),
DeserializeError(String),
WriteError(Error),
UnderflowError(String),
OverflowError(String),
ArrayTooLong,
SigningError(String),
GenericError(String),
}
Variants§
SerializeError(String)
Failed to encode
ReadError(Error)
Failed to read
DeserializeError(String)
Failed to decode
WriteError(Error)
Failed to write
UnderflowError(String)
Underflow – not enough bytes to form the message
OverflowError(String)
Overflow – message too big
ArrayTooLong
Array is too big
SigningError(String)
Failed to sign
GenericError(String)
Generic error
Trait Implementations§
source§impl Error for Error
impl Error for Error
source§fn cause(&self) -> Option<&dyn Error>
fn cause(&self) -> Option<&dyn Error>
👎Deprecated since 1.33.0: replaced by Error::source, which can support downcasting
1.30.0 · 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()