[][src]Enum tendermint::public_keys::SecretConnectionKey

pub enum SecretConnectionKey {
    Ed25519(PublicKey),
}

Secret Connection signing keys

Variants

Ed25519(PublicKey)

Ed25519 Secret Connection keys

Methods

impl SecretConnectionKey
[src]

pub fn from_raw_ed25519(bytes: &[u8]) -> Result<SecretConnectionKey, Error>
[src]

From raw Ed25519 public key bytes

pub fn ed25519(self) -> Option<PublicKey>
[src]

Get Ed25519 public key

Trait Implementations

impl From<PublicKey> for SecretConnectionKey
[src]

impl Eq for SecretConnectionKey
[src]

impl Copy for SecretConnectionKey
[src]

impl PartialEq<SecretConnectionKey> for SecretConnectionKey
[src]

impl Clone for SecretConnectionKey
[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for SecretConnectionKey
[src]

impl Display for SecretConnectionKey
[src]

impl Hash for SecretConnectionKey
[src]

fn hash_slice<H>(data: &[Self], state: &mut H) where
    H: Hasher
1.3.0
[src]

Feeds a slice of this type into the given [Hasher]. Read more

Auto Trait Implementations

Blanket Implementations

impl<T> From for T
[src]

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

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

type Owned = T

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

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

impl<T> Same for T

type Output = T

Should always be Self