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: &'a [u8]
The bytes that make up the partial or full codepoint.
For a Suffix this depends on idx. We don't scan forward
for additional continuation bytes after the reverse scan
failed to locate a multibyte sequence start.
rewind: usize
Start of the codepoint in the buffer, expressed as an offset
back from idx.
meaning: Meaning
Meaning of the partial or full codepoint.
Trait Implementations
impl<'a> Copy for Codepoint<'a>[src]
impl<'a> Clone for Codepoint<'a>[src]
fn clone(&self) -> Codepoint<'a>
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0
Performs copy-assignment from source. Read more
impl<'a> PartialEq for Codepoint<'a>[src]
fn eq(&self, __arg_0: &Codepoint<'a>) -> bool
This method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, __arg_0: &Codepoint<'a>) -> bool
This method tests for !=.
impl<'a> Eq for Codepoint<'a>[src]
impl<'a> PartialOrd for Codepoint<'a>[src]
fn partial_cmp(&self, __arg_0: &Codepoint<'a>) -> Option<Ordering>
This method returns an ordering between self and other values if one exists. Read more
fn lt(&self, __arg_0: &Codepoint<'a>) -> bool
This method tests less than (for self and other) and is used by the < operator. Read more
fn le(&self, __arg_0: &Codepoint<'a>) -> bool
This method tests less than or equal to (for self and other) and is used by the <= operator. Read more
fn gt(&self, __arg_0: &Codepoint<'a>) -> bool
This method tests greater than (for self and other) and is used by the > operator. Read more
fn ge(&self, __arg_0: &Codepoint<'a>) -> bool
This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more
impl<'a> Ord for Codepoint<'a>[src]
fn cmp(&self, __arg_0: &Codepoint<'a>) -> Ordering
This method returns an Ordering between self and other. Read more