Enum selectors::attr::ParsedAttrSelectorOperation
[−]
[src]
pub enum ParsedAttrSelectorOperation<AttrValue> { Exists, WithValue { operator: AttrSelectorOperator, case_sensitivity: ParsedCaseSensitivity, expected_value: AttrValue, }, }
Variants
Exists
WithValue
Fields of WithValue
operator: AttrSelectorOperator | |
case_sensitivity: ParsedCaseSensitivity | |
expected_value: AttrValue |
Trait Implementations
impl<AttrValue: Clone> Clone for ParsedAttrSelectorOperation<AttrValue>
[src]
fn clone(&self) -> ParsedAttrSelectorOperation<AttrValue>
[src]
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more
impl<AttrValue: Eq> Eq for ParsedAttrSelectorOperation<AttrValue>
[src]
impl<AttrValue: PartialEq> PartialEq for ParsedAttrSelectorOperation<AttrValue>
[src]
fn eq(&self, __arg_0: &ParsedAttrSelectorOperation<AttrValue>) -> bool
[src]
This method tests for self
and other
values to be equal, and is used by ==
. Read more
fn ne(&self, __arg_0: &ParsedAttrSelectorOperation<AttrValue>) -> bool
[src]
This method tests for !=
.