Struct picky_asn1_x509::signature::EcdsaSignatureValue
source · 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<EcdsaSignatureValue> for EcdsaSignatureValue
impl PartialEq<EcdsaSignatureValue> for EcdsaSignatureValue
source§fn eq(&self, other: &EcdsaSignatureValue) -> bool
fn eq(&self, other: &EcdsaSignatureValue) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for EcdsaSignatureValue
impl Serialize for EcdsaSignatureValue
impl Eq for EcdsaSignatureValue
impl StructuralEq for EcdsaSignatureValue
impl StructuralPartialEq for EcdsaSignatureValue
Auto Trait Implementations§
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