Enum unsigned_varint::decode::Error
source · #[non_exhaustive]
pub enum Error {
Insufficient,
Overflow,
NotMinimal,
}
Expand description
Possible decoding errors.
Note: The std
feature is required for the std::error::Error
impl and the conversion to
std::io::Error
.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Insufficient
Not enough input bytes.
Overflow
Input bytes exceed maximum.
NotMinimal
Encoding is not minimal (has trailing zero bytes).
Trait Implementations§
source§impl Error for Error
impl Error for Error
Only available when the feature std
is present.
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()