Struct regex_syntax::ByteRange [] [src]

pub struct ByteRange {
    pub start: u8,
    pub end: u8,
}

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

The start byte of the range.

This must be less than or equal to end.

The end byte of the range.

This must be greater than or equal to end.

Trait Implementations

impl Clone for ByteRange
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Copy for ByteRange
[src]

impl Debug for ByteRange
[src]

Formats the value using the given formatter.

impl PartialEq for ByteRange
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl PartialOrd for ByteRange
[src]

This method returns an ordering between self and other values if one exists. Read more

This method tests less than (for self and other) and is used by the < operator. Read more

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

This method tests greater than (for self and other) and is used by the > operator. Read more

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

impl Eq for ByteRange
[src]

impl Ord for ByteRange
[src]

This method returns an Ordering between self and other. Read more

impl PartialEq<u8> for ByteRange
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl PartialOrd<u8> for ByteRange
[src]

This method returns an ordering between self and other values if one exists. Read more

This method tests less than (for self and other) and is used by the < operator. Read more

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

This method tests greater than (for self and other) and is used by the > operator. Read more

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

impl Display for ByteRange
[src]

Formats the value using the given formatter.