pub enum ComponentValue<'s> {
Show 42 variants
BracketBlock(BracketBlock<'s>),
Calc(Calc<'s>),
Delimiter(Delimiter),
Dimension(Dimension<'s>),
Function(Function<'s>),
HexColor(HexColor<'s>),
IdSelector(IdSelector<'s>),
ImportantAnnotation(ImportantAnnotation<'s>),
InterpolableIdent(InterpolableIdent<'s>),
InterpolableStr(InterpolableStr<'s>),
LayerName(LayerName<'s>),
LessBinaryOperation(LessBinaryOperation<'s>),
LessCondition(Box<LessCondition<'s>>),
LessDetachedRuleset(LessDetachedRuleset<'s>),
LessEscapedStr(LessEscapedStr<'s>),
LessJavaScriptSnippet(LessJavaScriptSnippet<'s>),
LessList(LessList<'s>),
LessMixinCall(LessMixinCall<'s>),
LessNamespaceValue(Box<LessNamespaceValue<'s>>),
LessNegativeValue(LessNegativeValue<'s>),
LessParenthesizedOperation(LessParenthesizedOperation<'s>),
LessPercentKeyword(LessPercentKeyword),
LessPropertyVariable(LessPropertyVariable<'s>),
LessVariable(LessVariable<'s>),
LessVariableVariable(LessVariableVariable<'s>),
Number(Number<'s>),
Percentage(Percentage<'s>),
Ratio(Ratio<'s>),
SassArbitraryArgument(SassArbitraryArgument<'s>),
SassBinaryExpression(SassBinaryExpression<'s>),
SassKeywordArgument(SassKeywordArgument<'s>),
SassList(SassList<'s>),
SassMap(SassMap<'s>),
SassQualifiedName(SassQualifiedName<'s>),
SassNestingDeclaration(SassNestingDeclaration<'s>),
SassParenthesizedExpression(SassParenthesizedExpression<'s>),
SassParentSelector(NestingSelector<'s>),
SassUnaryExpression(SassUnaryExpression<'s>),
SassVariable(SassVariable<'s>),
TokenWithSpan(TokenWithSpan<'s>),
UnicodeRange(UnicodeRange<'s>),
Url(Url<'s>),
}Variants§
BracketBlock(BracketBlock<'s>)
Calc(Calc<'s>)
Delimiter(Delimiter)
Dimension(Dimension<'s>)
Function(Function<'s>)
HexColor(HexColor<'s>)
IdSelector(IdSelector<'s>)
ImportantAnnotation(ImportantAnnotation<'s>)
InterpolableIdent(InterpolableIdent<'s>)
InterpolableStr(InterpolableStr<'s>)
LayerName(LayerName<'s>)
LessBinaryOperation(LessBinaryOperation<'s>)
LessCondition(Box<LessCondition<'s>>)
LessDetachedRuleset(LessDetachedRuleset<'s>)
LessEscapedStr(LessEscapedStr<'s>)
LessJavaScriptSnippet(LessJavaScriptSnippet<'s>)
LessList(LessList<'s>)
LessMixinCall(LessMixinCall<'s>)
LessNamespaceValue(Box<LessNamespaceValue<'s>>)
LessNegativeValue(LessNegativeValue<'s>)
LessParenthesizedOperation(LessParenthesizedOperation<'s>)
LessPercentKeyword(LessPercentKeyword)
LessPropertyVariable(LessPropertyVariable<'s>)
LessVariable(LessVariable<'s>)
LessVariableVariable(LessVariableVariable<'s>)
Number(Number<'s>)
Percentage(Percentage<'s>)
Ratio(Ratio<'s>)
SassArbitraryArgument(SassArbitraryArgument<'s>)
SassBinaryExpression(SassBinaryExpression<'s>)
SassKeywordArgument(SassKeywordArgument<'s>)
SassList(SassList<'s>)
SassMap(SassMap<'s>)
SassQualifiedName(SassQualifiedName<'s>)
SassNestingDeclaration(SassNestingDeclaration<'s>)
SassParenthesizedExpression(SassParenthesizedExpression<'s>)
SassParentSelector(NestingSelector<'s>)
SassUnaryExpression(SassUnaryExpression<'s>)
SassVariable(SassVariable<'s>)
TokenWithSpan(TokenWithSpan<'s>)
UnicodeRange(UnicodeRange<'s>)
Url(Url<'s>)
Trait Implementations§
Source§impl<'s> Clone for ComponentValue<'s>
impl<'s> Clone for ComponentValue<'s>
Source§fn clone(&self) -> ComponentValue<'s>
fn clone(&self) -> ComponentValue<'s>
Returns a duplicate of the value. Read more
1.0.0 · 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 ComponentValue<'s>
impl<'s> Debug for ComponentValue<'s>
Source§impl<'cmt, 's: 'cmt> Parse<'cmt, 's> for ComponentValue<'s>
impl<'cmt, 's: 'cmt> Parse<'cmt, 's> for ComponentValue<'s>
Source§impl<'s> PartialEq for ComponentValue<'s>
impl<'s> PartialEq for ComponentValue<'s>
impl<'s> StructuralPartialEq for ComponentValue<'s>
Auto Trait Implementations§
impl<'s> Freeze for ComponentValue<'s>
impl<'s> RefUnwindSafe for ComponentValue<'s>
impl<'s> Send for ComponentValue<'s>
impl<'s> Sync for ComponentValue<'s>
impl<'s> Unpin for ComponentValue<'s>
impl<'s> UnwindSafe for ComponentValue<'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