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

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

Variants

Exists
WithValue

Fields of WithValue

operator: AttrSelectorOperatorcase_sensitivity: ParsedCaseSensitivityexpected_value: AttrValue

Trait Implementations

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

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

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

impl<AttrValue> StructuralEq for ParsedAttrSelectorOperation<AttrValue>[src]

impl<AttrValue> StructuralPartialEq for ParsedAttrSelectorOperation<AttrValue>[src]

Auto Trait Implementations

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

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

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

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

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

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.