Enum coins_core::enc::EncodingError
source · pub enum EncodingError {
UnknownScriptType,
WrongHrp {
got: String,
expected: String,
},
WrongVersion {
got: u8,
expected: u8,
},
Bs58Decode(Error),
Bs58Encode(Error),
BechError(Error),
NullDataScript,
SegwitVersionError(u8),
InvalidSizeError,
}
Expand description
Errors that can be returned by the Bitcoin AddressEncoder
.
Variants§
UnknownScriptType
Returned when ScriptPubkey type is unknown. May be non-standard or newer than lib version.
WrongHrp
Bech32 HRP does not match the current network.
WrongVersion
Base58Check version does not match the current network
Bs58Decode(Error)
Bubbled up error from base58check library
Bs58Encode(Error)
Bubbled up error from base58check library
BechError(Error)
Bubbled up error from bech32 library
NullDataScript
Op Return ScriptPubkey was passed to encoder
SegwitVersionError(u8)
Invalid Segwit Version
InvalidSizeError
Invalid Address Size
Trait Implementations§
source§impl Debug for EncodingError
impl Debug for EncodingError
source§impl Display for EncodingError
impl Display for EncodingError
source§impl Error for EncodingError
impl Error for EncodingError
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<Error> for EncodingError
impl From<Error> for EncodingError
source§fn from(source: Bs58DecodeError) -> Self
fn from(source: Bs58DecodeError) -> Self
Converts to this type from the input type.
source§impl From<Error> for EncodingError
impl From<Error> for EncodingError
source§fn from(source: Bs58EncodeError) -> Self
fn from(source: Bs58EncodeError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for EncodingError
impl RefUnwindSafe for EncodingError
impl Send for EncodingError
impl Sync for EncodingError
impl Unpin for EncodingError
impl UnwindSafe for EncodingError
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