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 Copy for Delimitersimpl Clone for Delimiters[src]
impl Clone for Delimitersfn clone(&self) -> Delimiters[src]
fn clone(&self) -> DelimitersReturns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
fn clone_from(&mut self, source: &Self)1.0.0
[src]Performs copy-assignment from source. Read more
impl PartialEq for Delimiters[src]
impl PartialEq for Delimitersfn eq(&self, other: &Delimiters) -> bool[src]
fn eq(&self, other: &Delimiters) -> boolThis method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, other: &Delimiters) -> bool[src]
fn ne(&self, other: &Delimiters) -> boolThis method tests for !=.
impl Eq for Delimiters[src]
impl Eq for Delimitersimpl Debug for Delimiters[src]
impl Debug for Delimitersfn fmt(&self, f: &mut Formatter) -> Result[src]
fn fmt(&self, f: &mut Formatter) -> ResultFormats the value using the given formatter. Read more
impl BitOr<Delimiters> for Delimiters[src]
impl BitOr<Delimiters> for Delimiterstype Output = Delimiters
The resulting type after applying the | operator.
fn bitor(self, other: Delimiters) -> Delimiters[src]
fn bitor(self, other: Delimiters) -> DelimitersPerforms the | operation.
Auto Trait Implementations
impl Send for Delimiters
impl Send for Delimitersimpl Sync for Delimiters
impl Sync for Delimiters