Enum ic_web3_rs::types::RecoveryMessage
source · pub enum RecoveryMessage {
Data(Vec<u8>),
Hash(H256),
}
Expand description
Recovery message data.
The message data can either be a binary message that is first hashed according to EIP-191 and then recovered based on the signature or a precomputed hash.
Variants§
Trait Implementations§
source§impl Clone for RecoveryMessage
impl Clone for RecoveryMessage
source§fn clone(&self) -> RecoveryMessage
fn clone(&self) -> RecoveryMessage
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 RecoveryMessage
impl Debug for RecoveryMessage
source§impl From<&[u8]> for RecoveryMessage
impl From<&[u8]> for RecoveryMessage
source§impl From<&str> for RecoveryMessage
impl From<&str> for RecoveryMessage
source§impl From<H256> for RecoveryMessage
impl From<H256> for RecoveryMessage
source§impl From<String> for RecoveryMessage
impl From<String> for RecoveryMessage
source§impl PartialEq for RecoveryMessage
impl PartialEq for RecoveryMessage
source§fn eq(&self, other: &RecoveryMessage) -> bool
fn eq(&self, other: &RecoveryMessage) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for RecoveryMessage
Auto Trait Implementations§
impl RefUnwindSafe for RecoveryMessage
impl Send for RecoveryMessage
impl Sync for RecoveryMessage
impl Unpin for RecoveryMessage
impl UnwindSafe for RecoveryMessage
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