pub struct ECPrivateKey {
pub public_key: ECPublicKey,
pub d: Base64BigUint,
}
Fields§
§public_key: ECPublicKey
§d: Base64BigUint
Trait Implementations§
Source§impl Clone for ECPrivateKey
impl Clone for ECPrivateKey
Source§fn clone(&self) -> ECPrivateKey
fn clone(&self) -> ECPrivateKey
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 ECPrivateKey
impl Debug for ECPrivateKey
Source§impl<'de> Deserialize<'de> for ECPrivateKey
impl<'de> Deserialize<'de> for ECPrivateKey
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 FromStr for ECPrivateKey
impl FromStr for ECPrivateKey
Source§impl PartialEq for ECPrivateKey
impl PartialEq for ECPrivateKey
Source§impl Serialize for ECPrivateKey
impl Serialize for ECPrivateKey
impl StructuralPartialEq for ECPrivateKey
Auto Trait Implementations§
impl Freeze for ECPrivateKey
impl RefUnwindSafe for ECPrivateKey
impl Send for ECPrivateKey
impl Sync for ECPrivateKey
impl Unpin for ECPrivateKey
impl UnwindSafe for ECPrivateKey
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