Struct raw_string::Utf8Chunk

source ·
pub struct Utf8Chunk<'a> {
    pub valid: &'a str,
    pub broken: &'a [u8],
}
Expand description

A chunk of valid UTF-8, possibly followed by a broken character encoding.

Fields

valid: &'a str

A valid UTF-8 piece, at the start, end, or between broken chars.

Empty between adjacent broken chars.

broken: &'a [u8]

A broken char.

Can only be empty in the last chunk.

Should be replaced by a single unicode replacement character, if not empty.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.