pub enum EcPublicKey {
NistP256(AffinePoint<NistP256>),
}Expand description
An elliptic curve public key.
Variants§
NistP256(AffinePoint<NistP256>)
Implementations§
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 moreAuto 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