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:

This example is not tested
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. Read more

impl BitOr<Delimiters> for Delimiters
[src]

The resulting type after applying the | operator.

Performs the | operation.

Auto Trait Implementations

impl Send for Delimiters

impl Sync for Delimiters