pub struct Eip712Signature {
pub r: String,
pub s: String,
pub v: u8,
}Expand description
EIP-712 signature components.
Fields§
§r: StringR component (32 bytes hex).
s: StringS component (32 bytes hex).
v: u8V component (recovery id).
Implementations§
Trait Implementations§
Source§impl Clone for Eip712Signature
impl Clone for Eip712Signature
Source§fn clone(&self) -> Eip712Signature
fn clone(&self) -> Eip712Signature
Returns a duplicate 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 moreAuto Trait Implementations§
impl Freeze for Eip712Signature
impl RefUnwindSafe for Eip712Signature
impl Send for Eip712Signature
impl Sync for Eip712Signature
impl Unpin for Eip712Signature
impl UnwindSafe for Eip712Signature
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