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