pub enum SelectorMatchReason {
Universal,
SimpleCompound,
SelectorList,
MissingTag,
MissingId,
MissingClass,
MissingAttribute,
MissingPseudoState,
UnsupportedSelector,
}Variants§
Universal
SimpleCompound
SelectorList
MissingTag
MissingId
MissingClass
MissingAttribute
MissingPseudoState
UnsupportedSelector
Trait Implementations§
Source§impl Clone for SelectorMatchReason
impl Clone for SelectorMatchReason
Source§fn clone(&self) -> SelectorMatchReason
fn clone(&self) -> SelectorMatchReason
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for SelectorMatchReason
impl Debug for SelectorMatchReason
impl Eq for SelectorMatchReason
Source§impl PartialEq for SelectorMatchReason
impl PartialEq for SelectorMatchReason
Source§fn eq(&self, other: &SelectorMatchReason) -> bool
fn eq(&self, other: &SelectorMatchReason) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for SelectorMatchReason
impl Serialize for SelectorMatchReason
impl StructuralPartialEq for SelectorMatchReason
Auto Trait Implementations§
impl Freeze for SelectorMatchReason
impl RefUnwindSafe for SelectorMatchReason
impl Send for SelectorMatchReason
impl Sync for SelectorMatchReason
impl Unpin for SelectorMatchReason
impl UnsafeUnpin for SelectorMatchReason
impl UnwindSafe for SelectorMatchReason
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