[−][src]Struct regex_syntax::hir::ClassBytesRange
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
impl ClassBytesRange
[src][−]
pub fn new(start: u8, end: u8) -> ClassBytesRange
[src][−]
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
.
pub fn start(&self) -> u8
[src][−]
Return the start of this range.
The start of a range is always less than or equal to the end of the range.
pub fn end(&self) -> u8
[src][−]
Return the end of this range.
The end of a range is always greater than or equal to the start of the range.
Trait Implementations
impl Clone for ClassBytesRange
[src][+]
impl Copy for ClassBytesRange
[src]
impl Debug for ClassBytesRange
[src][+]
impl Default for ClassBytesRange
[src][+]
impl Eq for ClassBytesRange
[src]
impl Ord for ClassBytesRange
[src][+]
impl PartialEq<ClassBytesRange> for ClassBytesRange
[src][+]
impl PartialOrd<ClassBytesRange> for ClassBytesRange
[src][+]
impl StructuralEq for ClassBytesRange
[src]
impl StructuralPartialEq for ClassBytesRange
[src]
Auto Trait Implementations
impl RefUnwindSafe for ClassBytesRange
impl Send for ClassBytesRange
impl Sync for ClassBytesRange
impl Unpin for ClassBytesRange
impl UnwindSafe for ClassBytesRange
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src][+]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src][+]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src][+]
T: ?Sized,
impl<T> From<T> for T
[src][+]
impl<T, U> Into<U> for T where
U: From<T>,
[src][+]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src][+]
T: Clone,
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src][+]
U: Into<T>,
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src][+]
U: TryFrom<T>,