pub enum SupportsInParensKind<'a> {
SupportsCondition(SupportsCondition<'a>),
Feature(Box<'a, SupportsDecl<'a>>),
Selector(SelectorList<'a>),
Function(Function<'a>),
GeneralEnclosed(TokenSeq<'a>),
Interpolation(InterpolableIdent<'a>),
}Variants§
SupportsCondition(SupportsCondition<'a>)
Feature(Box<'a, SupportsDecl<'a>>)
Selector(SelectorList<'a>)
Function(Function<'a>)
GeneralEnclosed(TokenSeq<'a>)
Interpolation(InterpolableIdent<'a>)
Sass only: a lone interpolation as a condition operand,
e.g. @supports #{"(a: b)"} { ... }.
Implementations§
§impl<'a> SupportsInParensKind<'a>
impl<'a> SupportsInParensKind<'a>
Trait Implementations§
Auto Trait Implementations§
impl<'a> !RefUnwindSafe for SupportsInParensKind<'a>
impl<'a> !Send for SupportsInParensKind<'a>
impl<'a> !Sync for SupportsInParensKind<'a>
impl<'a> !UnwindSafe for SupportsInParensKind<'a>
impl<'a> Freeze for SupportsInParensKind<'a>
impl<'a> Unpin for SupportsInParensKind<'a>
impl<'a> UnsafeUnpin for SupportsInParensKind<'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