pub struct SassKeywordArgument<'s> {
pub name: SassVariable<'s>,
pub colon_span: Span,
pub value: Box<ComponentValue<'s>>,
pub span: Span,
}Fields§
§name: SassVariable<'s>§colon_span: Span§value: Box<ComponentValue<'s>>§span: SpanTrait Implementations§
Source§impl<'s> Clone for SassKeywordArgument<'s>
impl<'s> Clone for SassKeywordArgument<'s>
Source§fn clone(&self) -> SassKeywordArgument<'s>
fn clone(&self) -> SassKeywordArgument<'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 SassKeywordArgument<'s>
impl<'s> Debug for SassKeywordArgument<'s>
Source§impl<'s> PartialEq for SassKeywordArgument<'s>
impl<'s> PartialEq for SassKeywordArgument<'s>
Source§impl<'s> SpanIgnoredEq for SassKeywordArgument<'s>
impl<'s> SpanIgnoredEq for SassKeywordArgument<'s>
Source§fn span_ignored_eq(&self, other: &Self) -> bool
fn span_ignored_eq(&self, other: &Self) -> bool
Compare equality of two AST nodes without respecting their spans.
impl<'s> StructuralPartialEq for SassKeywordArgument<'s>
Auto Trait Implementations§
impl<'s> Freeze for SassKeywordArgument<'s>
impl<'s> RefUnwindSafe for SassKeywordArgument<'s>
impl<'s> Send for SassKeywordArgument<'s>
impl<'s> Sync for SassKeywordArgument<'s>
impl<'s> Unpin for SassKeywordArgument<'s>
impl<'s> UnwindSafe for SassKeywordArgument<'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