gsm7

Crates.iogsm7
lib.rsgsm7
version0.3.0
sourcesrc
created_at2019-07-22 11:17:55.974584
updated_at2020-10-22 03:56:16.519641
descriptionGSM-7 (aka GSM 03.38 or 3GPP 23.038) encoding and decoding in Rust
homepage
repository
max_upload_size
id150742
size8,514
Jasper (jbg)

documentation

README

GSM-7 (aka GSM 03.38 or 3GPP 23.038) encoding and decoding in Rust

API Documentation

Example

Decoding

let v = vec![84, 58, 157, 14];
let reader = Gsm7Reader::new(io::Cursor::new(&v));
let s = reader.collect::<io::Result<String>>()?;
assert_eq!(&s, "Tttt");

Encoding

let mut writer = Gsm7Writer::new(Vec::new());
writer.write_str("Hello")?;

let v = writer.into_writer()?;
println!("v: {:?}", v);

License

gsm7 is distributed under the MIT license.

Commit count: 0

cargo fmt