pub trait PseudoElement<'i>: Sized + ToCss {
    type Impl: SelectorImpl<'i>;

    fn accepts_state_pseudo_classes(&self) -> bool { ... }
    fn valid_after_slotted(&self) -> bool { ... }
    fn is_webkit_scrollbar(&self) -> bool { ... }
}
Expand description

A trait that represents a pseudo-element.

Required Associated Types§

The SelectorImpl this pseudo-element is used for.

Provided Methods§

Whether the pseudo-element supports a given state selector to the right of it.

Whether this pseudo-element is valid after a ::slotted(..) pseudo.

Implementors§