[][src]Enum css3_selector::ast::AttributeSelector

pub enum AttributeSelector<'a> {
    Hash(&'a str),
    Class(&'a str),
    Attribute(Attribute<'a>),
    Psuedo(Psuedo<'a>),
    Negation(Negation<'a>),
}

Variants

Hash(&'a str)
Class(&'a str)
Attribute(Attribute<'a>)
Psuedo(Psuedo<'a>)
Negation(Negation<'a>)

Trait Implementations

impl<'a> Clone for AttributeSelector<'a>[src]

impl<'de: 'a, 'a> Deserialize<'de> for AttributeSelector<'a>[src]

impl<'a> Node<'a> for AttributeSelector<'a>[src]

impl<'a> Serialize for AttributeSelector<'a>[src]

Auto Trait Implementations

impl<'a> RefUnwindSafe for AttributeSelector<'a>

impl<'a> Send for AttributeSelector<'a>

impl<'a> Sync for AttributeSelector<'a>

impl<'a> Unpin for AttributeSelector<'a>

impl<'a> UnwindSafe for AttributeSelector<'a>

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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[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.