Expand description
§UNIC — IDNA — Punycode (RFC 3492)
A component of unic: Unicode and Internationalization Crates for Rust.
Implementation of Punycode (RFC 3492) algorithm.
Since Punycode fundamentally works on Unicode Code-Points,
encode and decode take and return slices and vectors of char.
encode_str and decode_to_string provide convenience wrappers
that convert from and to Rust’s UTF-8 based str and String types.
Constants§
- PKG_
DESCRIPTION - UNIC component description.
- PKG_
NAME - UNIC component name.
- PKG_
VERSION - UNIC component version.
Functions§
- decode
- Convert Punycode to Unicode.
- decode_
to_ string - Convert Punycode to an Unicode
String. - encode
- Convert Unicode to Punycode.
- encode_
str - Convert an Unicode
strto Punycode.