pub enum AttributeSelectorValue<'s> {
Ident(InterpolableIdent<'s>),
Str(InterpolableStr<'s>),
Percentage(Percentage<'s>),
LessEscapedStr(LessEscapedStr<'s>),
}Variants§
Ident(InterpolableIdent<'s>)
Str(InterpolableStr<'s>)
Percentage(Percentage<'s>)
LessEscapedStr(LessEscapedStr<'s>)
Trait Implementations§
Source§impl<'s> Clone for AttributeSelectorValue<'s>
impl<'s> Clone for AttributeSelectorValue<'s>
Source§fn clone(&self) -> AttributeSelectorValue<'s>
fn clone(&self) -> AttributeSelectorValue<'s>
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<'s> Debug for AttributeSelectorValue<'s>
impl<'s> Debug for AttributeSelectorValue<'s>
Source§impl<'s> PartialEq for AttributeSelectorValue<'s>
impl<'s> PartialEq for AttributeSelectorValue<'s>
Source§fn eq(&self, other: &AttributeSelectorValue<'s>) -> bool
fn eq(&self, other: &AttributeSelectorValue<'s>) -> bool
Tests for
self and other values to be equal, and is used by ==.impl<'s> StructuralPartialEq for AttributeSelectorValue<'s>
Auto Trait Implementations§
impl<'s> Freeze for AttributeSelectorValue<'s>
impl<'s> RefUnwindSafe for AttributeSelectorValue<'s>
impl<'s> Send for AttributeSelectorValue<'s>
impl<'s> Sync for AttributeSelectorValue<'s>
impl<'s> Unpin for AttributeSelectorValue<'s>
impl<'s> UnsafeUnpin for AttributeSelectorValue<'s>
impl<'s> UnwindSafe for AttributeSelectorValue<'s>
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