pub trait ToBase58 { // Required method fn to_base58(&self) -> String; }
A trait for converting a value to base58 encoding.
Converts the value of self to a base-58 value, returning the owned string.
self