Trait zero85::ToZ85 [] [src]

pub trait ToZ85 {
    fn to_z85(&self) -> Result<String, ToZ85Error>;
}

A trait for converting a value to z85 encoding.

Required Methods

Converts the value of self into a z85 encoded string, returning the owned string.

Implementors