[][src]Struct mundane::public::ed25519::Ed25519PubKey

pub struct Ed25519PubKey { /* fields omitted */ }

An Ed25519 public key.

Methods

impl Ed25519PubKey[src]

#[must_use] pub fn from_bytes(bytes: [u8; 32]) -> Ed25519PubKey[src]

Constructs a new public key from bytes.

#[must_use] pub fn bytes(&self) -> &[u8; 32][src]

Gets the raw bytes of the public key.

Trait Implementations

impl PublicKey for Ed25519PubKey[src]

type Private = Ed25519PrivKey

The type of the private component.

impl Debug for Ed25519PubKey[src]

Auto Trait Implementations

impl Send for Ed25519PubKey

impl Unpin for Ed25519PubKey

impl Sync for Ed25519PubKey

impl RefUnwindSafe for Ed25519PubKey

impl UnwindSafe for Ed25519PubKey

Blanket Implementations

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

impl<T> From<T> for T[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<T> BorrowMut<T> for T where
    T: ?Sized
[src]

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

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