[][src]Struct eosio_client_keys::EOSPublicKey

pub struct EOSPublicKey {
    pub public: PublicKey,
}

Fields

public: PublicKey

Implementations

impl EOSPublicKey[src]

pub fn from_eos_string(public_key: &str) -> Result<EOSPublicKey>[src]

@arg {string} public_key - like PUB_K1_base58pubkey.. @return PublicKey or Error (invalid)

pub fn from_eos_strings(public_keys: &[String]) -> Result<Vec<EOSPublicKey>>[src]

pub fn from_string_legacy(
    public_key: &str,
    pubkey_prefix: &str
) -> Result<EOSPublicKey>
[src]

@arg {string} public_key - like PUB_K1_base58pubkey.. @arg {string} [pubkey_prefix = 'EOS'] - public key prefix if not contained in @public_key. @return PublicKey or null (invalid)

pub fn from_buffer(buffer: Vec<u8>) -> Result<EOSPublicKey>[src]

pub fn to_string(&self) -> Result<String>[src]

pub fn to_eos_string(&self) -> Result<String>[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> 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, 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>,