[][src]Struct devolutions_crypto::key::PublicKey

pub struct PublicKey { /* fields omitted */ }

A public key. This key can be sent in clear on unsecured channels and stored publicly.

Trait Implementations

impl Clone for PublicKey[src]

impl Debug for PublicKey[src]

impl<'_> From<&'_ PublicKey> for PublicKey[src]

impl From<PublicKey> for Vec<u8>[src]

fn from(data: PublicKey) -> Self[src]

Serialize the structure into a Vec<u8>, for storage, transmission or use in another language.

impl HeaderType for PublicKey[src]

type Version = KeyVersion

type Subtype = KeySubtype

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

type Error = Error

The type returned in the event of a conversion error.

fn try_from(data: &[u8]) -> Result<Self, Error>[src]

Parses the data. Can return an Error of the data is invalid or unrecognized.

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> Same<T> for T

type Output = T

Should always be Self

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

type Owned = T

The resulting type after obtaining ownership.

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>,