[−][src]Struct regex_syntax::ByteRange
A single inclusive range in a byte class.
Note that this has a few convenient impls on PartialEq
and PartialOrd
for testing whether a byte is contained inside a given range.
Fields
start: u8
The start byte of the range.
This must be less than or equal to end
.
end: u8
The end byte of the range.
This must be greater than or equal to end
.
Trait Implementations
impl Clone for ByteRange
[src]
impl Copy for ByteRange
[src]
impl Eq for ByteRange
[src]
impl Ord for ByteRange
[src]
fn cmp(&self, other: &ByteRange) -> Ordering
[src]
fn max(self, other: Self) -> Self
1.21.0[src]
fn min(self, other: Self) -> Self
1.21.0[src]
fn clamp(self, min: Self, max: Self) -> Self
[src]
impl PartialEq<ByteRange> for ByteRange
[src]
impl PartialEq<u8> for ByteRange
[src]
impl PartialEq<ByteRange> for u8
[src]
impl PartialOrd<ByteRange> for ByteRange
[src]
fn partial_cmp(&self, other: &ByteRange) -> Option<Ordering>
[src]
fn lt(&self, other: &ByteRange) -> bool
[src]
fn le(&self, other: &ByteRange) -> bool
[src]
fn gt(&self, other: &ByteRange) -> bool
[src]
fn ge(&self, other: &ByteRange) -> bool
[src]
impl PartialOrd<u8> for ByteRange
[src]
fn partial_cmp(&self, other: &u8) -> Option<Ordering>
[src]
#[must_use]
fn lt(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]
fn le(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]
fn gt(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]
fn ge(&self, other: &Rhs) -> bool
1.0.0[src]
impl PartialOrd<ByteRange> for u8
[src]
fn partial_cmp(&self, other: &ByteRange) -> Option<Ordering>
[src]
#[must_use]
fn lt(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]
fn le(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]
fn gt(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]
fn ge(&self, other: &Rhs) -> bool
1.0.0[src]
impl Display for ByteRange
[src]
impl Debug for ByteRange
[src]
impl StructuralPartialEq for ByteRange
[src]
impl StructuralEq for ByteRange
[src]
Auto Trait Implementations
impl Send for ByteRange
impl Sync for ByteRange
impl Unpin for ByteRange
impl UnwindSafe for ByteRange
impl RefUnwindSafe for ByteRange
Blanket Implementations
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> From<T> for T
[src]
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T
[src]
fn clone_into(&self, target: &mut T)
[src]
impl<T> ToString for T where
T: Display + ?Sized,
[src]
T: Display + ?Sized,
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,