Struct regex_syntax::hir::ClassBytesRange
source · pub struct ClassBytesRange { /* private fields */ }
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.
Implementations§
source§impl ClassBytesRange
impl ClassBytesRange
sourcepub fn new(start: u8, end: u8) -> ClassBytesRange
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
.
Trait Implementations§
source§impl Clone for ClassBytesRange
impl Clone for ClassBytesRange
source§fn clone(&self) -> ClassBytesRange
fn clone(&self) -> ClassBytesRange
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for ClassBytesRange
impl Debug for ClassBytesRange
source§impl Default for ClassBytesRange
impl Default for ClassBytesRange
source§fn default() -> ClassBytesRange
fn default() -> ClassBytesRange
Returns the “default value” for a type. Read more
source§impl Ord for ClassBytesRange
impl Ord for ClassBytesRange
source§fn cmp(&self, other: &ClassBytesRange) -> Ordering
fn cmp(&self, other: &ClassBytesRange) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
source§impl PartialEq<ClassBytesRange> for ClassBytesRange
impl PartialEq<ClassBytesRange> for ClassBytesRange
source§fn eq(&self, other: &ClassBytesRange) -> bool
fn eq(&self, other: &ClassBytesRange) -> bool
source§impl PartialOrd<ClassBytesRange> for ClassBytesRange
impl PartialOrd<ClassBytesRange> for ClassBytesRange
source§fn partial_cmp(&self, other: &ClassBytesRange) -> Option<Ordering>
fn partial_cmp(&self, other: &ClassBytesRange) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
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