Struct futf::Codepoint
[−]
[src]
pub struct Codepoint<'a> { pub bytes: &'a [u8], pub rewind: usize, pub meaning: Meaning, }
Represents a complete or partial UTF-8 codepoint.
Fields
bytes | The bytes that make up the partial or full codepoint. For a |
rewind | Start of the codepoint in the buffer, expressed as an offset
back from |
meaning | Meaning of the partial or full codepoint. |