#[non_exhaustive]pub enum MessageSignatureError {
InvalidLength,
InvalidEncoding(Error),
InvalidBase64,
UnsupportedAddressType(AddressType),
}
Expand description
An error used for dealing with Bitcoin Signed Messages.
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.
InvalidLength
Signature is expected to be 65 bytes.
InvalidEncoding(Error)
The signature is invalidly constructed.
InvalidBase64
Invalid base64 encoding.
UnsupportedAddressType(AddressType)
Unsupported Address Type
Trait Implementations§
§impl Clone for MessageSignatureError
impl Clone for MessageSignatureError
§fn clone(&self) -> MessageSignatureError
fn clone(&self) -> MessageSignatureError
Returns a copy 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 more§impl Debug for MessageSignatureError
impl Debug for MessageSignatureError
§impl Display for MessageSignatureError
impl Display for MessageSignatureError
§impl Error for MessageSignatureError
impl Error for MessageSignatureError
§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()
§impl From<Error> for MessageSignatureError
impl From<Error> for MessageSignatureError
§fn from(e: Error) -> MessageSignatureError
fn from(e: Error) -> MessageSignatureError
Converts to this type from the input type.
§impl From<Infallible> for MessageSignatureError
impl From<Infallible> for MessageSignatureError
§fn from(never: Infallible) -> MessageSignatureError
fn from(never: Infallible) -> MessageSignatureError
Converts to this type from the input type.
§impl PartialEq for MessageSignatureError
impl PartialEq for MessageSignatureError
§fn eq(&self, other: &MessageSignatureError) -> bool
fn eq(&self, other: &MessageSignatureError) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Eq for MessageSignatureError
impl StructuralPartialEq for MessageSignatureError
Auto Trait Implementations§
impl Freeze for MessageSignatureError
impl RefUnwindSafe for MessageSignatureError
impl Send for MessageSignatureError
impl Sync for MessageSignatureError
impl Unpin for MessageSignatureError
impl UnwindSafe for MessageSignatureError
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
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more