[][src]Enum hobo_css::selector::PseudoClass

pub enum PseudoClass {
    active,
    first_child,
    focus,
    hover,
    last_child,
    checked,
    disabled,
    enabled,
    in_range,
    invalid,
    nth_child(u32u32),
    nth_of_type(u32),
    not(Selector),
    only_child,
    read_only,
    valid,
    raw(String),
}

Variants

active
first_child
focus
hover
last_child
checked
disabled
enabled
in_range
invalid
nth_child(u32u32)
nth_of_type(u32)
only_child
read_only
valid
raw(String)

Trait Implementations

impl Clone for PseudoClass[src]

impl Debug for PseudoClass[src]

impl Display for PseudoClass[src]

impl Eq for PseudoClass[src]

impl Hash for PseudoClass[src]

impl PartialEq<PseudoClass> for PseudoClass[src]

impl StructuralEq for PseudoClass[src]

impl StructuralPartialEq for PseudoClass[src]

Auto Trait Implementations

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> ToString for T where
    T: Display + ?Sized
[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.