[][src]Enum indy_utils::keys::KeyEncoding

pub enum KeyEncoding {
    BASE58,
    Other(String),
}

Enum of known and unknown key encodings

Variants

BASE58
Other(String)

Implementations

impl KeyEncoding[src]

pub fn from_str(keyenc: &str) -> KeyEncoding[src]

pub fn as_str(&self) -> &str[src]

Trait Implementations

impl Clone for KeyEncoding[src]

impl Debug for KeyEncoding[src]

impl Default for KeyEncoding[src]

impl Deref for KeyEncoding[src]

type Target = str

The resulting type after dereferencing.

impl Eq for KeyEncoding[src]

impl<'_> From<&'_ str> for KeyEncoding[src]

impl From<String> for KeyEncoding[src]

impl Hash for KeyEncoding[src]

impl Ord for KeyEncoding[src]

impl PartialEq<KeyEncoding> for KeyEncoding[src]

impl PartialOrd<KeyEncoding> for KeyEncoding[src]

impl StructuralEq for KeyEncoding[src]

impl StructuralPartialEq for KeyEncoding[src]

impl ToString for KeyEncoding[src]

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> Clear for T where
    T: InitializableFromZeroed + ?Sized

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

impl<T> InitializableFromZeroed for T where
    T: Default

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