pub struct EcdsaSignatureValue {
pub r: IntegerAsn1,
pub s: IntegerAsn1,
}
Expand description
Defined in RFC 3279
Ecdsa-Sig-Value ::= SEQUENCE {
r INTEGER,
s INTEGER
}
Fields§
§r: IntegerAsn1
§s: IntegerAsn1
Trait Implementations§
Source§impl Clone for EcdsaSignatureValue
impl Clone for EcdsaSignatureValue
Source§fn clone(&self) -> EcdsaSignatureValue
fn clone(&self) -> EcdsaSignatureValue
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 EcdsaSignatureValue
impl Debug for EcdsaSignatureValue
Source§impl<'de> Deserialize<'de> for EcdsaSignatureValue
impl<'de> Deserialize<'de> for EcdsaSignatureValue
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 EcdsaSignatureValue
impl PartialEq for EcdsaSignatureValue
Source§impl Serialize for EcdsaSignatureValue
impl Serialize for EcdsaSignatureValue
impl Eq for EcdsaSignatureValue
impl StructuralPartialEq for EcdsaSignatureValue
Auto Trait Implementations§
impl Freeze for EcdsaSignatureValue
impl RefUnwindSafe for EcdsaSignatureValue
impl Send for EcdsaSignatureValue
impl Sync for EcdsaSignatureValue
impl Unpin for EcdsaSignatureValue
impl UnwindSafe for EcdsaSignatureValue
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