Trait cyfs_base::ToBase58

source ·
pub trait ToBase58 {
    // Required method
    fn to_base58(&self) -> String;
}
Expand description

A trait for converting a value to base58 encoded string.

Required Methods§

source

fn to_base58(&self) -> String

Converts a value of self to a base58 value, returning the owned string.

Implementations on Foreign Types§

source§

impl ToBase58 for [u8]

Implementors§