base32768-0.1.0 doesn't have any documentation.
Base32768-rs
Base32768 is a binary encoding for encoding arbitrary binary data to UTF-16 text.
Usage
// Encoding
let data = ;
let encoded = encode.unwrap; // "䩲腻㐿"
// Decoding
let mut decoded = Vec:: new;
decode.unwrap;
println!; // Prints "Hello"
Prior Art
This module is a pretty vanilla port of the original JavaScript module to Rust.