pub trait Ed25519PublicKey {
    // Required method
    fn public_key(&self) -> &VerifyingKey;
}
Expand description

An object that has an Ed25519 PublicKey.

Required Methods§

fn public_key(&self) -> &VerifyingKey

Get the Ed25519 PublicKey.

Implementors§