pub enum InterpolableStr<'a> {
Literal(Str<'a>),
SassInterpolated(SassInterpolatedStr<'a>),
LessInterpolated(LessInterpolatedStr<'a>),
}Variants§
Literal(Str<'a>)
SassInterpolated(SassInterpolatedStr<'a>)
LessInterpolated(LessInterpolatedStr<'a>)
Implementations§
§impl<'a> InterpolableStr<'a>
impl<'a> InterpolableStr<'a>
Trait Implementations§
Source§impl<'a> Debug for InterpolableStr<'a>
impl<'a> Debug for InterpolableStr<'a>
Auto Trait Implementations§
impl<'a> !RefUnwindSafe for InterpolableStr<'a>
impl<'a> !Send for InterpolableStr<'a>
impl<'a> !Sync for InterpolableStr<'a>
impl<'a> !UnwindSafe for InterpolableStr<'a>
impl<'a> Freeze for InterpolableStr<'a>
impl<'a> Unpin for InterpolableStr<'a>
impl<'a> UnsafeUnpin for InterpolableStr<'a>
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