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
.
Sourcepub fn start(&self) -> u8
pub fn start(&self) -> u8
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 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 for ClassBytesRange
impl PartialEq for ClassBytesRange
Source§impl PartialOrd for ClassBytesRange
impl PartialOrd for ClassBytesRange
impl Copy for ClassBytesRange
impl Eq for ClassBytesRange
impl StructuralPartialEq for ClassBytesRange
Auto Trait Implementations§
impl Freeze for ClassBytesRange
impl RefUnwindSafe for ClassBytesRange
impl Send for ClassBytesRange
impl Sync for ClassBytesRange
impl Unpin for ClassBytesRange
impl UnwindSafe for ClassBytesRange
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§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)