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 SubsetOf<Latin1> for ASCII
[src]

[src]

Validate the other direction of conversion; check if this buffer from the superset format conforms to the subset format. Read more

impl Copy for Latin1
[src]

impl Clone for Latin1
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Default for Latin1
[src]

[src]

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

impl Debug for Latin1
[src]

[src]

Formats the value using the given formatter. Read more

impl Format for Latin1
[src]

[src]

Check whether the buffer is valid for this format.

[src]

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

[src]

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

[src]

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

[src]

Compute any fixup needed when concatenating buffers. Read more

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

Iterator for characters and their byte indices.

Important traits for SingleByteCharIndices<'a>
[src]

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

[src]

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