1 unstable release

Uses old Rust 2015

0.1.0 Feb 24, 2018

#1159 in Encoding

Download history 1209/week @ 2023-12-09 1695/week @ 2023-12-16 590/week @ 2023-12-23 985/week @ 2023-12-30 847/week @ 2024-01-06 2624/week @ 2024-01-13 3058/week @ 2024-01-20 3660/week @ 2024-01-27 4259/week @ 2024-02-03 4097/week @ 2024-02-10 3797/week @ 2024-02-17 2635/week @ 2024-02-24 3959/week @ 2024-03-02 1946/week @ 2024-03-09 2874/week @ 2024-03-16 2032/week @ 2024-03-23

11,109 downloads per month
Used in 13 crates (7 directly)

MIT license

33KB
386 lines

codepage-437 TravisCI build status AppVeyorCI build status Licence

Code page 437 transcoding for Rust.

Documentation


lib.rs:

Conversion to and from codepage 437.

Use the {Borrow,}FromCp437 traits to convert series of cp437 bytes to Unicode, and the cp437_to_unicode() function to decode a single codepoint.

Use the {Into,To}Cp437 traits to convert Unicode to a series of cp437 bytes, and the unicode_to_cp437() function to encode a single codepoint.

Examples

Borrowing from a buffer:

let data = &[/* buffer acquired somewhere */];

/// in_unicode will be Cow::Borrowed if data only contains overlapping characters,
///                 or Cow::Owned if a conversion needed to have been made.
let in_unicode = Cow::borrow_from_cp437(data, &CP437_CONTROL);

// Also valid:
let in_unicode = String::borrow_from_cp437(data, &CP437_CONTROL);

Moving out of a buffer:

let data = vec![/* buffer moved in from somewhere */];

/// data is moved out of and zero-alloced into in_unicode
///      if it only contains overlapping characters
let in_unicode = String::from_cp437(data, &CP437_CONTROL);

Borrowing from a &str:

let data = "Some string.";

/// in_cp437 will be Cow::Borrowed if data only contains overlapping characters,
///                  Cow::Owned if a conversion needed to have been made,
///               or Err, if data can't be represented as cp437
let in_cp437 = data.to_cp437(&CP437_CONTROL);

// Also valid (String is AsRef<str>):
let data = "Some string.".to_string();
let in_cp437 = data.to_cp437(&CP437_CONTROL);

Moving out of a String:

let data = "Some string.".to_string();

/// data is moved out of and zero-alloced into in_cp437
///      if it only contains overlapping characters
let in_cp437 = data.into_cp437(&CP437_CONTROL);

Unrepresentable Unicode:

// Ż has no representation in cp437
let data = "Jurek żelaznym żurkiem żre żupan.";

let result = data.to_cp437(&CP437_CONTROL);
assert!(result.is_err());
// result.unwrap_err() is Cp437Error (or IntoCp437Error for into_cp437()),
//   with an API modeled after libstd's {From,}Utf8Error

No runtime deps

~170KB