[−][src]Enum utf8_ranges::Utf8Sequence
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(Utf8Range)
One byte range.
Two([Utf8Range; 2])
Two successive byte ranges.
Three([Utf8Range; 3])
Three successive byte ranges.
Four([Utf8Range; 4])
Four successive byte ranges.
Methods
impl Utf8Sequence
[src]
impl Utf8Sequence
pub fn as_slice(&self) -> &[Utf8Range]
[src]
pub fn as_slice(&self) -> &[Utf8Range]
Returns the underlying sequence of byte ranges as a slice.
pub fn len(&self) -> usize
[src]
pub fn len(&self) -> usize
Returns the number of byte ranges in this sequence.
The length is guaranteed to be in the closed interval [1, 4]
.
pub fn matches(&self, bytes: &[u8]) -> bool
[src]
pub fn matches(&self, bytes: &[u8]) -> bool
Returns true if and only if a prefix of bytes
matches this sequence
of byte ranges.
Trait Implementations
impl Copy for Utf8Sequence
[src]
impl Copy for Utf8Sequence
impl Clone for Utf8Sequence
[src]
impl Clone for Utf8Sequence
fn clone(&self) -> Utf8Sequence
[src]
fn clone(&self) -> Utf8Sequence
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0[src]
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
impl Eq for Utf8Sequence
[src]
impl Eq for Utf8Sequence
impl PartialEq for Utf8Sequence
[src]
impl PartialEq for Utf8Sequence
fn eq(&self, other: &Utf8Sequence) -> bool
[src]
fn eq(&self, other: &Utf8Sequence) -> bool
This method tests for self
and other
values to be equal, and is used by ==
. Read more
fn ne(&self, other: &Utf8Sequence) -> bool
[src]
fn ne(&self, other: &Utf8Sequence) -> bool
This method tests for !=
.
impl<'a> IntoIterator for &'a Utf8Sequence
[src]
impl<'a> IntoIterator for &'a Utf8Sequence
type IntoIter = Iter<'a, Utf8Range>
Which kind of iterator are we turning this into?
type Item = &'a Utf8Range
The type of the elements being iterated over.
fn into_iter(self) -> Self::IntoIter
[src]
fn into_iter(self) -> Self::IntoIter
Creates an iterator from a value. Read more
impl Debug for Utf8Sequence
[src]
impl Debug for Utf8Sequence
Auto Trait Implementations
impl Send for Utf8Sequence
impl Send for Utf8Sequence
impl Sync for Utf8Sequence
impl Sync for Utf8Sequence
Blanket Implementations
impl<T> ToOwned for T where
T: Clone,
[src]
impl<T> ToOwned for T where
T: Clone,
type Owned = T
fn to_owned(&self) -> T
[src]
fn to_owned(&self) -> T
Creates owned data from borrowed data, usually by cloning. Read more
fn clone_into(&self, target: &mut T)
[src]
fn clone_into(&self, target: &mut T)
🔬 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]
impl<T> From for T
impl<T, U> Into for T where
U: From<T>,
[src]
impl<T, U> Into for T where
U: From<T>,
impl<T, U> TryFrom for T where
T: From<U>,
[src]
impl<T, U> TryFrom for T where
T: From<U>,
type Error = !
try_from
)The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
try_from
)Performs the conversion.
impl<T> Borrow for T where
T: ?Sized,
[src]
impl<T> Borrow for T where
T: ?Sized,
impl<T, U> TryInto for T where
U: TryFrom<T>,
[src]
impl<T, U> TryInto for T where
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
try_from
)The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
try_from
)Performs the conversion.
impl<T> BorrowMut for T where
T: ?Sized,
[src]
impl<T> BorrowMut for T where
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
impl<T> Any for T where
T: 'static + ?Sized,
[src]
impl<T> Any for T where
T: 'static + ?Sized,
fn get_type_id(&self) -> TypeId
[src]
fn get_type_id(&self) -> TypeId
🔬 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