Struct cssparser::Delimiters
source · pub struct Delimiters {
bits: u8,
}
Expand description
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)
Fields§
§bits: u8
Implementations§
source§impl Delimiters
impl Delimiters
fn contains(self, other: Delimiters) -> bool
pub(crate) fn from_byte(byte: Option<u8>) -> Delimiters
Trait Implementations§
source§impl BitOr for Delimiters
impl BitOr for Delimiters
§type Output = Delimiters
type Output = Delimiters
The resulting type after applying the
|
operator.source§fn bitor(self, other: Delimiters) -> Delimiters
fn bitor(self, other: Delimiters) -> Delimiters
Performs the
|
operation. Read moresource§impl Clone for Delimiters
impl Clone for Delimiters
source§fn clone(&self) -> Delimiters
fn clone(&self) -> Delimiters
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for Delimiters
impl Debug for Delimiters
source§impl PartialEq for Delimiters
impl PartialEq for Delimiters
source§fn eq(&self, other: &Delimiters) -> bool
fn eq(&self, other: &Delimiters) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for Delimiters
impl Eq for Delimiters
impl StructuralPartialEq for Delimiters
Auto Trait Implementations§
impl Freeze for Delimiters
impl RefUnwindSafe for Delimiters
impl Send for Delimiters
impl Sync for Delimiters
impl Unpin for Delimiters
impl UnwindSafe for Delimiters
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more