Struct data_encoding::Translate
[−]
[src]
pub struct Translate { pub from: String, pub to: String, }
How to translate characters when decoding
The order matters. The first character of the from
field is translated to
the first character of the to
field. The second to the second. Etc.
See Specification for more information.
Fields
from: String
Characters to translate from
to: String
Characters to translate to
Trait Implementations
impl Debug for Translate
[src]
fn fmt(&self, __arg_0: &mut Formatter) -> Result
[src]
Formats the value using the given formatter. Read more