[][src]Struct css3_selector::ast::Attribute

pub struct Attribute<'a> {
    pub namespace: Option<Namespace<'a>>,
    pub name: &'a str,
    pub matcher: Option<Matcher>,
    pub value: Option<&'a str>,
}

Fields

namespace: Option<Namespace<'a>>name: &'a strmatcher: Option<Matcher>value: Option<&'a str>

Trait Implementations

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

Auto Trait Implementations

impl<'a> RefUnwindSafe for Attribute<'a>

impl<'a> Send for Attribute<'a>

impl<'a> Sync for Attribute<'a>

impl<'a> Unpin for Attribute<'a>

impl<'a> UnwindSafe for Attribute<'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> From<T> for T[src]

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

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.