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

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.

Implementations

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 Clone for ClassBytesRange[src]

impl Copy for ClassBytesRange[src]

impl Debug for ClassBytesRange[src]

impl Default for ClassBytesRange[src]

impl Eq for ClassBytesRange[src]

impl Ord for ClassBytesRange[src]

impl PartialEq<ClassBytesRange> for ClassBytesRange[src]

impl PartialOrd<ClassBytesRange> for ClassBytesRange[src]

impl StructuralEq for ClassBytesRange[src]

impl StructuralPartialEq for ClassBytesRange[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

impl<T> From<T> for T[src]

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

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

type Owned = T

The resulting type after obtaining ownership.

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.