[][src]Struct keynesis::PublicKey

pub struct PublicKey(_);

Public key to use for key exchange

This key is derived from the PublicIdentity and is meant for establishing a key exchange (Diffie-Hellman). It is not necessary to share this key as it can be derived from the PublicIdentity (assuming the derivation path is known by both party).

Implementations

impl PublicKey[src]

pub const SIZE: usize[src]

Trait Implementations

impl Clone for PublicKey[src]

impl Debug for PublicKey[src]

impl Display for PublicKey[src]

impl Eq for PublicKey[src]

impl From<[u8; 32]> for PublicKey[src]

impl FromStr for PublicKey[src]

type Err = FromHexError

The associated error which can be returned from parsing.

impl Hash for PublicKey[src]

impl Ord for PublicKey[src]

impl PartialEq<PublicKey> for PublicKey[src]

impl PartialOrd<PublicKey> for PublicKey[src]

impl StructuralEq for PublicKey[src]

impl StructuralPartialEq for PublicKey[src]

impl<'a> TryFrom<&'a [u8]> for PublicKey[src]

type Error = PublicKeyError

The type returned in the event of a conversion error.

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,