Enum selectors::attr::ParsedAttrSelectorOperation[][src]

pub enum ParsedAttrSelectorOperation<AttrValue> {
    Exists,
    WithValue {
        operator: AttrSelectorOperator,
        case_sensitivity: ParsedCaseSensitivity,
        expected_value: AttrValue,
    },
}

Variants

Fields of WithValue

Trait Implementations

impl<AttrValue: Clone> Clone for ParsedAttrSelectorOperation<AttrValue>
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl<AttrValue: Eq> Eq for ParsedAttrSelectorOperation<AttrValue>
[src]

impl<AttrValue: PartialEq> PartialEq for ParsedAttrSelectorOperation<AttrValue>
[src]

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

This method tests for !=.

Auto Trait Implementations

impl<AttrValue> Send for ParsedAttrSelectorOperation<AttrValue> where
    AttrValue: Send

impl<AttrValue> Sync for ParsedAttrSelectorOperation<AttrValue> where
    AttrValue: Sync