[][src]Struct regex_syntax::hir::ClassBytesRange

pub struct ClassBytesRange { /* fields omitted */ }

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.

Methods

impl ClassBytesRange[src]

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

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.

pub fn start(&self) -> u8[src]

Return the start of this range.

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

pub fn end(&self) -> u8[src]

Return the end of this range.

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

Trait Implementations

impl PartialOrd<ClassBytesRange> for ClassBytesRange[src]

impl Copy for ClassBytesRange[src]

impl PartialEq<ClassBytesRange> for ClassBytesRange[src]

impl Default for ClassBytesRange[src]

impl Clone for ClassBytesRange[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Ord for ClassBytesRange[src]

fn max(self, other: Self) -> Self
1.21.0
[src]

Compares and returns the maximum of two values. Read more

fn min(self, other: Self) -> Self
1.21.0
[src]

Compares and returns the minimum of two values. Read more

fn clamp(self, min: Self, max: Self) -> Self[src]

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

Returns max if self is greater than max, and min if self is less than min. Otherwise this will return self. Panics if min > max. Read more

impl Eq for ClassBytesRange[src]

impl Debug for ClassBytesRange[src]

Auto Trait Implementations

Blanket Implementations

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

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

type Owned = T

impl<T> From for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

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

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

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

The type returned in the event of a conversion error.