Struct tendril::fmt::Latin1 [] [src]

pub struct Latin1;

Marker type for the single-byte encoding of the first 256 Unicode codepoints.

This is IANA's "ISO-8859-1". It's ISO's "ISO 8859-1" with the addition of the C0 and C1 control characters from ECMA-48 / ISO 6429.

Not to be confused with WHATWG's "latin1" or "iso8859-1" labels (or the many other aliases), which actually stand for Windows-1252.

Trait Implementations

impl Copy for Latin1
[src]

impl Clone for Latin1
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Default for Latin1
[src]

Returns the "default value" for a type. Read more

impl Debug for Latin1
[src]

Formats the value using the given formatter.

impl Format for Latin1
[src]

Check whether the buffer is valid for this format.

Check whether the buffer is valid for this format. Read more

Check whether the buffer is valid for this format. Read more

Check whether the buffer is valid for this format. Read more

Compute any fixup needed when concatenating buffers. Read more

impl<'a> CharFormat<'a> for Latin1
[src]

Iterator for characters and their byte indices.

Iterate over the characters of the string and their byte indices. Read more

Encode the character as bytes and pass them to a continuation. Read more