pub struct ClassUnicodeRange { /* private fields */ }
Available on (crate features
syntax-glob
or syntax-ev
or syntax-regex
) and crate feature syntax-regex
only.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
.
Sourcepub fn start(&self) -> char
pub fn start(&self) -> char
Return the start of this range.
The start of a range is always less than or equal to the end of the range.
Trait Implementations§
Source§impl Clone for ClassUnicodeRange
impl Clone for ClassUnicodeRange
Source§fn clone(&self) -> ClassUnicodeRange
fn clone(&self) -> ClassUnicodeRange
Returns a duplicate 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 for ClassUnicodeRange
impl PartialEq for ClassUnicodeRange
Source§impl PartialOrd for ClassUnicodeRange
impl PartialOrd for ClassUnicodeRange
impl Copy for ClassUnicodeRange
impl Eq for ClassUnicodeRange
impl StructuralPartialEq for ClassUnicodeRange
Auto Trait Implementations§
impl Freeze for ClassUnicodeRange
impl RefUnwindSafe for ClassUnicodeRange
impl Send for ClassUnicodeRange
impl Sync for ClassUnicodeRange
impl Unpin for ClassUnicodeRange
impl UnwindSafe for ClassUnicodeRange
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more