pub struct P256PublicKey {
pub x: Bytes<32>,
pub y: Bytes<32>,
}Fields§
§x: Bytes<32>§y: Bytes<32>Trait Implementations§
Source§impl Clone for P256PublicKey
impl Clone for P256PublicKey
Source§fn clone(&self) -> P256PublicKey
fn clone(&self) -> P256PublicKey
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 P256PublicKey
impl Debug for P256PublicKey
Source§impl<'de> Deserialize<'de> for P256PublicKey
impl<'de> Deserialize<'de> for P256PublicKey
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<P256PublicKey> for PublicKey
impl From<P256PublicKey> for PublicKey
Source§fn from(key: P256PublicKey) -> Self
fn from(key: P256PublicKey) -> Self
Converts to this type from the input type.
Source§impl PartialEq for P256PublicKey
impl PartialEq for P256PublicKey
Source§impl Serialize for P256PublicKey
impl Serialize for P256PublicKey
impl Eq for P256PublicKey
impl StructuralPartialEq for P256PublicKey
Auto Trait Implementations§
impl Freeze for P256PublicKey
impl RefUnwindSafe for P256PublicKey
impl Send for P256PublicKey
impl Sync for P256PublicKey
impl Unpin for P256PublicKey
impl UnwindSafe for P256PublicKey
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