pub enum LessInterpolatedIdentElement<'s> {
Variable(LessVariableInterpolation<'s>),
Property(LessPropertyInterpolation<'s>),
Static(InterpolableIdentStaticPart<'s>),
}Variants§
Variable(LessVariableInterpolation<'s>)
Property(LessPropertyInterpolation<'s>)
Static(InterpolableIdentStaticPart<'s>)
Trait Implementations§
Source§impl<'s> Clone for LessInterpolatedIdentElement<'s>
impl<'s> Clone for LessInterpolatedIdentElement<'s>
Source§fn clone(&self) -> LessInterpolatedIdentElement<'s>
fn clone(&self) -> LessInterpolatedIdentElement<'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 LessInterpolatedIdentElement<'s>
impl<'s> Debug for LessInterpolatedIdentElement<'s>
Source§impl<'s> PartialEq for LessInterpolatedIdentElement<'s>
impl<'s> PartialEq for LessInterpolatedIdentElement<'s>
Source§fn eq(&self, other: &LessInterpolatedIdentElement<'s>) -> bool
fn eq(&self, other: &LessInterpolatedIdentElement<'s>) -> bool
Tests for
self and other values to be equal, and is used by ==.impl<'s> StructuralPartialEq for LessInterpolatedIdentElement<'s>
Auto Trait Implementations§
impl<'s> Freeze for LessInterpolatedIdentElement<'s>
impl<'s> RefUnwindSafe for LessInterpolatedIdentElement<'s>
impl<'s> Send for LessInterpolatedIdentElement<'s>
impl<'s> Sync for LessInterpolatedIdentElement<'s>
impl<'s> Unpin for LessInterpolatedIdentElement<'s>
impl<'s> UnsafeUnpin for LessInterpolatedIdentElement<'s>
impl<'s> UnwindSafe for LessInterpolatedIdentElement<'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