pub enum MozFunctionalPseudoElement<'a> {
TreeCell(ColonColon, Function, CommaSeparated<'a, Ident>, RightParen),
TreeCellText(ColonColon, Function, CommaSeparated<'a, Ident>, RightParen),
TreeCheckbox(ColonColon, Function, CommaSeparated<'a, Ident>, RightParen),
TreeColumn(ColonColon, Function, CommaSeparated<'a, Ident>, RightParen),
TreeImage(ColonColon, Function, CommaSeparated<'a, Ident>, RightParen),
TreeLine(ColonColon, Function, CommaSeparated<'a, Ident>, RightParen),
TreeRow(ColonColon, Function, CommaSeparated<'a, Ident>, RightParen),
TreeSeparator(ColonColon, Function, CommaSeparated<'a, Ident>, RightParen),
TreeTwisty(ColonColon, Function, CommaSeparated<'a, Ident>, RightParen),
}Variants§
TreeCell(ColonColon, Function, CommaSeparated<'a, Ident>, RightParen)
TreeCellText(ColonColon, Function, CommaSeparated<'a, Ident>, RightParen)
TreeCheckbox(ColonColon, Function, CommaSeparated<'a, Ident>, RightParen)
TreeColumn(ColonColon, Function, CommaSeparated<'a, Ident>, RightParen)
TreeImage(ColonColon, Function, CommaSeparated<'a, Ident>, RightParen)
TreeLine(ColonColon, Function, CommaSeparated<'a, Ident>, RightParen)
TreeRow(ColonColon, Function, CommaSeparated<'a, Ident>, RightParen)
TreeSeparator(ColonColon, Function, CommaSeparated<'a, Ident>, RightParen)
TreeTwisty(ColonColon, Function, CommaSeparated<'a, Ident>, RightParen)
Trait Implementations§
Source§impl<'a> Clone for MozFunctionalPseudoElement<'a>
impl<'a> Clone for MozFunctionalPseudoElement<'a>
Source§fn clone(&self) -> MozFunctionalPseudoElement<'a>
fn clone(&self) -> MozFunctionalPseudoElement<'a>
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<'a> Debug for MozFunctionalPseudoElement<'a>
impl<'a> Debug for MozFunctionalPseudoElement<'a>
Source§impl<'a> Hash for MozFunctionalPseudoElement<'a>
impl<'a> Hash for MozFunctionalPseudoElement<'a>
Source§impl<'a> NodeWithMetadata<CssMetadata> for MozFunctionalPseudoElement<'a>
impl<'a> NodeWithMetadata<CssMetadata> for MozFunctionalPseudoElement<'a>
Source§fn self_metadata(&self) -> CssMetadata
fn self_metadata(&self) -> CssMetadata
Returns the metadata contributed by this node itself, not including children.
Most nodes don’t contribute metadata, so can simply return
M::default().
Nodes like StyleRule or AtRules should return their own node kind flags here.Source§fn metadata(&self) -> CssMetadata
fn metadata(&self) -> CssMetadata
Returns the complete aggregated metadata for this node (self + children).
Default implementation merges children’s metadata with self_metadata().
Source§impl<'a> Ord for MozFunctionalPseudoElement<'a>
impl<'a> Ord for MozFunctionalPseudoElement<'a>
Source§fn cmp(&self, other: &MozFunctionalPseudoElement<'a>) -> Ordering
fn cmp(&self, other: &MozFunctionalPseudoElement<'a>) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl<'a> Parse<'a> for MozFunctionalPseudoElement<'a>
impl<'a> Parse<'a> for MozFunctionalPseudoElement<'a>
Source§impl<'a> PartialEq for MozFunctionalPseudoElement<'a>
impl<'a> PartialEq for MozFunctionalPseudoElement<'a>
Source§fn eq(&self, other: &MozFunctionalPseudoElement<'a>) -> bool
fn eq(&self, other: &MozFunctionalPseudoElement<'a>) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl<'a> PartialOrd for MozFunctionalPseudoElement<'a>
impl<'a> PartialOrd for MozFunctionalPseudoElement<'a>
Source§impl<'a> SemanticEq for MozFunctionalPseudoElement<'a>
impl<'a> SemanticEq for MozFunctionalPseudoElement<'a>
Source§fn semantic_eq(&self, other: &Self) -> bool
fn semantic_eq(&self, other: &Self) -> bool
Returns
true if self and other are semantically equal.Source§impl<'a> ToCursors for MozFunctionalPseudoElement<'a>
impl<'a> ToCursors for MozFunctionalPseudoElement<'a>
fn to_cursors(&self, s: &mut impl CursorSink)
impl<'a> Eq for MozFunctionalPseudoElement<'a>
impl<'a> StructuralPartialEq for MozFunctionalPseudoElement<'a>
Auto Trait Implementations§
impl<'a> Freeze for MozFunctionalPseudoElement<'a>
impl<'a> !RefUnwindSafe for MozFunctionalPseudoElement<'a>
impl<'a> !Send for MozFunctionalPseudoElement<'a>
impl<'a> !Sync for MozFunctionalPseudoElement<'a>
impl<'a> Unpin for MozFunctionalPseudoElement<'a>
impl<'a> !UnwindSafe for MozFunctionalPseudoElement<'a>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more