pub enum DecodingError {
InvalidBech32(Bech32Error),
InvalidBase64(Base64Error),
InvalidHex(HexError),
InvalidEncoding {
hint: String,
},
}Expand description
Unified error type for multi-format decoding operations.
Wraps format-specific errors from hex, base64url, bech32, and bech32m decoders. Always available; variants depend on enabled features.
Variants§
InvalidBech32(Bech32Error)
Bech32 or Bech32m decoding failed.
InvalidBase64(Base64Error)
Base64url decoding failed.
InvalidHex(HexError)
Hexadecimal decoding failed.
InvalidEncoding
Generic encoding failure in debug builds (includes a non-sensitive hint).
Trait Implementations§
Source§impl Clone for DecodingError
impl Clone for DecodingError
Source§fn clone(&self) -> DecodingError
fn clone(&self) -> DecodingError
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for DecodingError
impl Debug for DecodingError
Source§impl Display for DecodingError
impl Display for DecodingError
Source§impl Error for DecodingError
impl Error for DecodingError
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()
Auto Trait Implementations§
impl Freeze for DecodingError
impl RefUnwindSafe for DecodingError
impl Send for DecodingError
impl Sync for DecodingError
impl Unpin for DecodingError
impl UnsafeUnpin for DecodingError
impl UnwindSafe for DecodingError
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