Trait base_x::alphabet::Alphabet [−][src]
pub trait Alphabet {
fn encode(self, input: &[u8]) -> String;
fn decode(self, input: &str) -> Result<Vec<u8>, DecodeError>;
}pub trait Alphabet {
fn encode(self, input: &[u8]) -> String;
fn decode(self, input: &str) -> Result<Vec<u8>, DecodeError>;
}