Enum pink_web3::types::RecoveryMessage
source · [−]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
Data(Vec<u8>)
Message bytes
Hash(H256)
Message hash
Trait Implementations
sourceimpl Clone for RecoveryMessage
impl Clone for RecoveryMessage
sourcefn clone(&self) -> RecoveryMessage
fn clone(&self) -> RecoveryMessage
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresourceimpl Debug for RecoveryMessage
impl Debug for RecoveryMessage
sourceimpl From<&[u8]> for RecoveryMessage
impl From<&[u8]> for RecoveryMessage
sourceimpl From<&str> for RecoveryMessage
impl From<&str> for RecoveryMessage
sourceimpl From<H256> for RecoveryMessage
impl From<H256> for RecoveryMessage
sourceimpl From<String> for RecoveryMessage
impl From<String> for RecoveryMessage
sourceimpl PartialEq<RecoveryMessage> for RecoveryMessage
impl PartialEq<RecoveryMessage> for RecoveryMessage
sourcefn eq(&self, other: &RecoveryMessage) -> bool
fn eq(&self, other: &RecoveryMessage) -> bool
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
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
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