Struct regex_syntax::hir::ClassUnicodeRange
source · pub struct ClassUnicodeRange { /* private fields */ }
Expand description
A single range of characters represented by Unicode scalar values.
The range is closed. That is, the start and end of the range are included in the range.
Implementations§
source§impl ClassUnicodeRange
impl ClassUnicodeRange
sourcepub fn new(start: char, end: char) -> ClassUnicodeRange
pub fn new(start: char, end: char) -> ClassUnicodeRange
Create a new Unicode scalar value 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 ClassUnicodeRange
impl Clone for ClassUnicodeRange
source§fn clone(&self) -> ClassUnicodeRange
fn clone(&self) -> ClassUnicodeRange
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 ClassUnicodeRange
impl Debug for ClassUnicodeRange
source§impl Default for ClassUnicodeRange
impl Default for ClassUnicodeRange
source§fn default() -> ClassUnicodeRange
fn default() -> ClassUnicodeRange
Returns the “default value” for a type. Read more
source§impl Ord for ClassUnicodeRange
impl Ord for ClassUnicodeRange
source§fn cmp(&self, other: &ClassUnicodeRange) -> Ordering
fn cmp(&self, other: &ClassUnicodeRange) -> 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<ClassUnicodeRange> for ClassUnicodeRange
impl PartialEq<ClassUnicodeRange> for ClassUnicodeRange
source§fn eq(&self, other: &ClassUnicodeRange) -> bool
fn eq(&self, other: &ClassUnicodeRange) -> bool
source§impl PartialOrd<ClassUnicodeRange> for ClassUnicodeRange
impl PartialOrd<ClassUnicodeRange> for ClassUnicodeRange
source§fn partial_cmp(&self, other: &ClassUnicodeRange) -> Option<Ordering>
fn partial_cmp(&self, other: &ClassUnicodeRange) -> 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