Enum coins_core::enc::bases::EncodingError
source · [−]pub enum EncodingError {
UnknownScriptType,
WrongHrp {
got: String,
expected: String,
},
WrongVersion {
got: u8,
expected: u8,
},
B58Error(FromBase58CheckError),
BechError(BechError),
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
B58Error(FromBase58CheckError)
Bubbled up error from base58check library
BechError(BechError)
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
sourceimpl Debug for EncodingError
impl Debug for EncodingError
sourceimpl Display for EncodingError
impl Display for EncodingError
sourceimpl Error for EncodingError
impl Error for EncodingError
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>
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
use the Display impl or to_string()
sourceimpl From<Error> for EncodingError
impl From<Error> for EncodingError
sourceimpl From<FromBase58CheckError> for EncodingError
impl From<FromBase58CheckError> for EncodingError
Impl explicitly because FromBase58CheckError doesn’t implement the std error format
sourcefn from(e: FromBase58CheckError) -> Self
fn from(e: FromBase58CheckError) -> Self
Converts to this type from the input type.
Auto Trait Implementations
impl RefUnwindSafe for EncodingError
impl Send for EncodingError
impl Sync for EncodingError
impl Unpin for EncodingError
impl UnwindSafe for EncodingError
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