Trait local_encoding::Encoder
source · [−]pub trait Encoder {
fn to_string(&self, data: &[u8]) -> Result<String>;
fn to_bytes(&self, data: &str) -> Result<Vec<u8>>;
}
Expand description
Converter between string and multibyte encoding.