pub struct SignedMessageSignature {
pub full_sig: Option<String>,
pub r: Option<String>,
pub s: Option<String>,
pub v: Option<V>,
}
Fields§
§full_sig: Option<String>
R + S values concatenated
r: Option<String>
§s: Option<String>
§v: Option<V>
Implementations§
Source§impl SignedMessageSignature
impl SignedMessageSignature
pub fn new() -> SignedMessageSignature
Trait Implementations§
Source§impl Clone for SignedMessageSignature
impl Clone for SignedMessageSignature
Source§fn clone(&self) -> SignedMessageSignature
fn clone(&self) -> SignedMessageSignature
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 moreSource§impl Debug for SignedMessageSignature
impl Debug for SignedMessageSignature
Source§impl Default for SignedMessageSignature
impl Default for SignedMessageSignature
Source§fn default() -> SignedMessageSignature
fn default() -> SignedMessageSignature
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SignedMessageSignature
impl<'de> Deserialize<'de> for SignedMessageSignature
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for SignedMessageSignature
impl PartialEq for SignedMessageSignature
Source§impl Serialize for SignedMessageSignature
impl Serialize for SignedMessageSignature
impl StructuralPartialEq for SignedMessageSignature
Auto Trait Implementations§
impl Freeze for SignedMessageSignature
impl RefUnwindSafe for SignedMessageSignature
impl Send for SignedMessageSignature
impl Sync for SignedMessageSignature
impl Unpin for SignedMessageSignature
impl UnwindSafe for SignedMessageSignature
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