You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
phetch/src/encoding.rs

8 lines
186 B
Rust

4 years ago
/// Encoding of Gopher response. Only UTF8 and CP437 are supported.
pub(crate) enum Encoding {
/// Unicode
UTF8,
/// https://en.wikipedia.org/wiki/Code_page_437
CP437,
}