[][src]Enum utf8_ranges::Utf8Sequence

pub enum Utf8Sequence {
    One(Utf8Range),
    Two([Utf8Range; 2]),
    Three([Utf8Range; 3]),
    Four([Utf8Range; 4]),
}

Utf8Sequence represents a sequence of byte ranges.

To match a Utf8Sequence, a candidate byte sequence must match each successive range.

For example, if there are two ranges, [C2-DF][80-BF], then the byte sequence \xDD\x61 would not match because 0x61 < 0x80.

Variants

One byte range.

Two successive byte ranges.

Three successive byte ranges.

Four successive byte ranges.

Methods

impl Utf8Sequence
[src]

Returns the underlying sequence of byte ranges as a slice.

Returns the number of byte ranges in this sequence.

The length is guaranteed to be in the closed interval [1, 4].

Returns true if and only if a prefix of bytes matches this sequence of byte ranges.

Trait Implementations

impl Copy for Utf8Sequence
[src]

impl Clone for Utf8Sequence
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Eq for Utf8Sequence
[src]

impl PartialEq for Utf8Sequence
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl<'a> IntoIterator for &'a Utf8Sequence
[src]

Which kind of iterator are we turning this into?

The type of the elements being iterated over.

Creates an iterator from a value. Read more

impl Debug for Utf8Sequence
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl Send for Utf8Sequence

impl Sync for Utf8Sequence

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

Uses borrowed data to replace owned data, usually by cloning. Read more

impl<T> From for T
[src]

Performs the conversion.

impl<T, U> Into for T where
    U: From<T>, 
[src]

Performs the conversion.

impl<T, U> TryFrom for T where
    T: From<U>, 
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl<T> Borrow for T where
    T: ?Sized
[src]

Immutably borrows from an owned value. Read more

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl<T> BorrowMut for T where
    T: ?Sized
[src]

Mutably borrows from an owned value. Read more

impl<T> Any for T where
    T: 'static + ?Sized
[src]

🔬 This is a nightly-only experimental API. (get_type_id)

this method will likely be replaced by an associated static

Gets the TypeId of self. Read more