pub enum ParsedAttrSelectorOperation<AttrValue> {
Exists,
WithValue {
operator: AttrSelectorOperator,
case_sensitivity: ParsedCaseSensitivity,
value: AttrValue,
},
}
Variants§
Trait Implementations§
source§impl<AttrValue: Clone> Clone for ParsedAttrSelectorOperation<AttrValue>
impl<AttrValue: Clone> Clone for ParsedAttrSelectorOperation<AttrValue>
source§fn clone(&self) -> ParsedAttrSelectorOperation<AttrValue>
fn clone(&self) -> ParsedAttrSelectorOperation<AttrValue>
Returns a copy 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<AttrValue: PartialEq> PartialEq for ParsedAttrSelectorOperation<AttrValue>
impl<AttrValue: PartialEq> PartialEq for ParsedAttrSelectorOperation<AttrValue>
source§fn eq(&self, other: &ParsedAttrSelectorOperation<AttrValue>) -> bool
fn eq(&self, other: &ParsedAttrSelectorOperation<AttrValue>) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl<AttrValue> ToShmem for ParsedAttrSelectorOperation<AttrValue>where
AttrValue: ToShmem,
impl<AttrValue> ToShmem for ParsedAttrSelectorOperation<AttrValue>where
AttrValue: ToShmem,
impl<AttrValue: Eq> Eq for ParsedAttrSelectorOperation<AttrValue>
impl<AttrValue> StructuralPartialEq for ParsedAttrSelectorOperation<AttrValue>
Auto Trait Implementations§
impl<AttrValue> Freeze for ParsedAttrSelectorOperation<AttrValue>where
AttrValue: Freeze,
impl<AttrValue> RefUnwindSafe for ParsedAttrSelectorOperation<AttrValue>where
AttrValue: RefUnwindSafe,
impl<AttrValue> Send for ParsedAttrSelectorOperation<AttrValue>where
AttrValue: Send,
impl<AttrValue> Sync for ParsedAttrSelectorOperation<AttrValue>where
AttrValue: Sync,
impl<AttrValue> Unpin for ParsedAttrSelectorOperation<AttrValue>where
AttrValue: Unpin,
impl<AttrValue> UnwindSafe for ParsedAttrSelectorOperation<AttrValue>where
AttrValue: UnwindSafe,
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