pub enum MessageSignatureError {
InvalidLength,
InvalidEncoding(Error),
InvalidBase64,
UnsupportedAddressType(AddressType),
}
Expand description
An error used for dealing with Bitcoin Signed Messages.
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 Clone for MessageSignatureError
impl Clone for MessageSignatureError
source§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 moresource§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 From<Error> for MessageSignatureError
impl From<Error> for MessageSignatureError
source§fn from(e: Error) -> MessageSignatureError
fn from(e: Error) -> MessageSignatureError
Converts to this type from the input type.
source§impl From<Infallible> for MessageSignatureError
impl From<Infallible> for MessageSignatureError
source§fn from(never: Infallible) -> Self
fn from(never: Infallible) -> Self
Converts to this type from the input type.
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