Struct cssparser::Delimiters [] [src]

pub struct Delimiters { /* fields omitted */ }

A set of characters, to be used with the Parser::parse_until* methods.

The union of two sets can be obtained with the | operator. Example:

input.parse_until_before(Delimiter::CurlyBracketBlock | Delimiter::Semicolon)

Trait Implementations

impl Copy for Delimiters
[src]

impl Clone for Delimiters
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for Delimiters
[src]

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

This method tests for !=.

impl Eq for Delimiters
[src]

impl Debug for Delimiters
[src]

Formats the value using the given formatter.

impl BitOr<Delimiters> for Delimiters
[src]

The resulting type after applying the | operator

The method for the | operator