Trait bs58::ToBase58 [] [src]

pub trait ToBase58 {
    fn to_base58(&self) -> String;
    fn to_base58_with_alphabet(&self, alpha: &[u8; 58]) -> String;
}

A trait for Base58 encoding bytes to an owned string.

Required Methods

Base58 encode self to an owned string using the default alphabet.

Base58 encode self to an owned string using the given alphabet.

Implementors