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