pub struct EcDsaPrivateKey {
pub identifier: String,
pub q: MpInt,
pub d: MpInt,
}
Fields§
§identifier: String
§q: MpInt
§d: MpInt
Trait Implementations§
Source§impl Clone for EcDsaPrivateKey
impl Clone for EcDsaPrivateKey
Source§fn clone(&self) -> EcDsaPrivateKey
fn clone(&self) -> EcDsaPrivateKey
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 EcDsaPrivateKey
impl Debug for EcDsaPrivateKey
Source§impl<'de> Deserialize<'de> for EcDsaPrivateKey
impl<'de> Deserialize<'de> for EcDsaPrivateKey
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 From<&EcDsaPrivateKey> for EcDsaPublicKey
impl From<&EcDsaPrivateKey> for EcDsaPublicKey
Source§fn from(key: &EcDsaPrivateKey) -> Self
fn from(key: &EcDsaPrivateKey) -> Self
Converts to this type from the input type.
Source§impl From<EcDsaPrivateKey> for EcDsaPublicKey
impl From<EcDsaPrivateKey> for EcDsaPublicKey
Source§fn from(key: EcDsaPrivateKey) -> Self
fn from(key: EcDsaPrivateKey) -> Self
Converts to this type from the input type.
Source§impl Hash for EcDsaPrivateKey
impl Hash for EcDsaPrivateKey
Source§impl KeyType for EcDsaPrivateKey
impl KeyType for EcDsaPrivateKey
Source§impl PartialEq for EcDsaPrivateKey
impl PartialEq for EcDsaPrivateKey
Source§impl Serialize for EcDsaPrivateKey
impl Serialize for EcDsaPrivateKey
impl Eq for EcDsaPrivateKey
impl StructuralPartialEq for EcDsaPrivateKey
Auto Trait Implementations§
impl Freeze for EcDsaPrivateKey
impl RefUnwindSafe for EcDsaPrivateKey
impl Send for EcDsaPrivateKey
impl Sync for EcDsaPrivateKey
impl Unpin for EcDsaPrivateKey
impl UnwindSafe for EcDsaPrivateKey
Blanket Implementations§
Source§impl<'a, T> Blob for Twhere
T: Serialize + Deserialize<'a>,
impl<'a, T> Blob for Twhere
T: Serialize + Deserialize<'a>,
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