pub struct ClassBytesRange {
    start: u8,
    end: u8,
}
Expand description

A single range of characters represented by arbitrary bytes.

The range is closed. That is, the start and end of the range are included in the range.

Fields§

§start: u8§end: u8

Implementations§

source§

impl ClassBytesRange

source

pub fn new(start: u8, end: u8) -> ClassBytesRange

Create a new byte range for a character class.

The returned range is always in a canonical form. That is, the range returned always satisfies the invariant that start <= end.

source

pub fn start(&self) -> u8

Return the start of this range.

The start of a range is always less than or equal to the end of the range.

source

pub fn end(&self) -> u8

Return the end of this range.

The end of a range is always greater than or equal to the start of the range.

source

pub fn len(&self) -> usize

Returns the number of bytes in this range.

Trait Implementations§

source§

impl Clone for ClassBytesRange

source§

fn clone(&self) -> ClassBytesRange

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for ClassBytesRange

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Default for ClassBytesRange

source§

fn default() -> ClassBytesRange

Returns the “default value” for a type. Read more
source§

impl Interval for ClassBytesRange

source§

fn case_fold_simple( &self, ranges: &mut Vec<ClassBytesRange> ) -> Result<(), CaseFoldError>

Apply simple case folding to this byte range. Only ASCII case mappings (for a-z) are applied.

Additional ranges are appended to the given vector. Canonical ordering is not maintained in the given vector.

§

type Bound = u8

source§

fn lower(&self) -> u8

source§

fn upper(&self) -> u8

source§

fn set_lower(&mut self, bound: u8)

source§

fn set_upper(&mut self, bound: u8)

source§

fn create(lower: Self::Bound, upper: Self::Bound) -> Self

Create a new interval.
source§

fn union(&self, other: &Self) -> Option<Self>

Union the given overlapping range into this range. Read more
source§

fn intersect(&self, other: &Self) -> Option<Self>

Intersect this range with the given range and return the result. Read more
source§

fn difference(&self, other: &Self) -> (Option<Self>, Option<Self>)

Subtract the given range from this range and return the resulting ranges. Read more
source§

fn is_contiguous(&self, other: &Self) -> bool

Returns true if and only if the two ranges are contiguous. Two ranges are contiguous if and only if the ranges are either overlapping or adjacent.
source§

fn is_intersection_empty(&self, other: &Self) -> bool

Returns true if and only if the intersection of this range and the other range is empty.
source§

fn is_subset(&self, other: &Self) -> bool

Returns true if and only if this range is a subset of the other range.
source§

impl Ord for ClassBytesRange

source§

fn cmp(&self, other: &ClassBytesRange) -> Ordering

This method returns an Ordering between self and other. Read more
1.21.0 · source§

fn max(self, other: Self) -> Selfwhere Self: Sized,

Compares and returns the maximum of two values. Read more
1.21.0 · source§

fn min(self, other: Self) -> Selfwhere Self: Sized,

Compares and returns the minimum of two values. Read more
1.50.0 · source§

fn clamp(self, min: Self, max: Self) -> Selfwhere Self: Sized + PartialOrd<Self>,

Restrict a value to a certain interval. Read more
source§

impl PartialEq<ClassBytesRange> for ClassBytesRange

source§

fn eq(&self, other: &ClassBytesRange) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl PartialOrd<ClassBytesRange> for ClassBytesRange

source§

fn partial_cmp(&self, other: &ClassBytesRange) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
1.0.0 · source§

fn lt(&self, other: &Rhs) -> bool

This method tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · source§

fn le(&self, other: &Rhs) -> bool

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0 · source§

fn gt(&self, other: &Rhs) -> bool

This method tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 · source§

fn ge(&self, other: &Rhs) -> bool

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more
source§

impl Copy for ClassBytesRange

source§

impl Eq for ClassBytesRange

source§

impl StructuralEq for ClassBytesRange

source§

impl StructuralPartialEq for ClassBytesRange

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

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

source§

impl<T> ToOwned for Twhere T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

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

fn clone_into(&self, target: &mut T)

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

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.