Enum bitcoin::util::misc::MessageSignatureError
source · #[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§
source§impl Debug for MessageSignatureError
impl Debug for MessageSignatureError
source§impl Display for MessageSignatureError
impl Display for MessageSignatureError
source§impl Error for MessageSignatureError
impl Error for MessageSignatureError
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 PartialEq<MessageSignatureError> for MessageSignatureError
impl PartialEq<MessageSignatureError> for MessageSignatureError
source§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 StructuralEq for MessageSignatureError
impl StructuralPartialEq for MessageSignatureError
Auto Trait Implementations§
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