pub enum AttributeSelectorMatcherValue {
Equals,
Tilde,
Bar,
Caret,
Dollar,
Asterisk,
}
Variants
Equals
=
Tilde
~=
Bar
|=
Caret
^=
Dollar
$=
Asterisk
*=
Implementations
sourceimpl AttributeSelectorMatcherValue
impl AttributeSelectorMatcherValue
sourcepub fn is_asterisk(&self) -> bool
pub fn is_asterisk(&self) -> bool
Returns true
if self
is of variant Asterisk
.
Trait Implementations
sourceimpl Clone for AttributeSelectorMatcherValue
impl Clone for AttributeSelectorMatcherValue
sourcefn clone(&self) -> AttributeSelectorMatcherValue
fn clone(&self) -> AttributeSelectorMatcherValue
Returns a copy of the value. Read more
1.0.0 · sourceconst fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for AttributeSelectorMatcherValue
impl Debug for AttributeSelectorMatcherValue
sourceimpl<'de> Deserialize<'de> for AttributeSelectorMatcherValue
impl<'de> Deserialize<'de> for AttributeSelectorMatcherValue
sourcefn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where
D: Deserializer<'de>,
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where
D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
sourceimpl EqIgnoreSpan for AttributeSelectorMatcherValue
impl EqIgnoreSpan for AttributeSelectorMatcherValue
fn eq_ignore_span(&self, other: &Self) -> bool
sourceimpl Hash for AttributeSelectorMatcherValue
impl Hash for AttributeSelectorMatcherValue
sourceimpl Ord for AttributeSelectorMatcherValue
impl Ord for AttributeSelectorMatcherValue
sourcefn cmp(&self, other: &AttributeSelectorMatcherValue) -> Ordering
fn cmp(&self, other: &AttributeSelectorMatcherValue) -> Ordering
1.21.0 · sourceconst fn max(self, other: Self) -> Selfwhere
Self: Sized,
const fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
1.21.0 · sourceconst fn min(self, other: Self) -> Selfwhere
Self: Sized,
const fn min(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the minimum of two values. Read more
1.50.0 · sourceconst fn clamp(self, min: Self, max: Self) -> Selfwhere
Self: Sized + PartialOrd<Self>,
const fn clamp(self, min: Self, max: Self) -> Selfwhere
Self: Sized + PartialOrd<Self>,
Restrict a value to a certain interval. Read more
sourceimpl PartialEq<AttributeSelectorMatcherValue> for AttributeSelectorMatcherValue
impl PartialEq<AttributeSelectorMatcherValue> for AttributeSelectorMatcherValue
sourcefn eq(&self, other: &AttributeSelectorMatcherValue) -> bool
fn eq(&self, other: &AttributeSelectorMatcherValue) -> bool
sourceimpl PartialOrd<AttributeSelectorMatcherValue> for AttributeSelectorMatcherValue
impl PartialOrd<AttributeSelectorMatcherValue> for AttributeSelectorMatcherValue
sourcefn partial_cmp(&self, other: &AttributeSelectorMatcherValue) -> Option<Ordering>
fn partial_cmp(&self, other: &AttributeSelectorMatcherValue) -> Option<Ordering>
1.0.0 · sourceconst fn le(&self, other: &Rhs) -> bool
const fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moreimpl Copy for AttributeSelectorMatcherValue
impl Eq for AttributeSelectorMatcherValue
impl StructuralEq for AttributeSelectorMatcherValue
impl StructuralPartialEq for AttributeSelectorMatcherValue
Auto Trait Implementations
impl RefUnwindSafe for AttributeSelectorMatcherValue
impl Send for AttributeSelectorMatcherValue
impl Sync for AttributeSelectorMatcherValue
impl Unpin for AttributeSelectorMatcherValue
impl UnwindSafe for AttributeSelectorMatcherValue
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more