pub struct SassFunction<'s> {
pub name: Ident<'s>,
pub parameters: SassParameters<'s>,
pub span: Span,
}Fields§
§name: Ident<'s>§parameters: SassParameters<'s>§span: SpanTrait Implementations§
Source§impl<'s> Clone for SassFunction<'s>
impl<'s> Clone for SassFunction<'s>
Source§fn clone(&self) -> SassFunction<'s>
fn clone(&self) -> SassFunction<'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 SassFunction<'s>
impl<'s> Debug for SassFunction<'s>
Source§impl<'cmt, 's: 'cmt> Parse<'cmt, 's> for SassFunction<'s>
impl<'cmt, 's: 'cmt> Parse<'cmt, 's> for SassFunction<'s>
Source§impl<'s> PartialEq for SassFunction<'s>
impl<'s> PartialEq for SassFunction<'s>
Source§fn eq(&self, other: &SassFunction<'s>) -> bool
fn eq(&self, other: &SassFunction<'s>) -> bool
Tests for
self and other values to be equal, and is used by ==.impl<'s> StructuralPartialEq for SassFunction<'s>
Auto Trait Implementations§
impl<'s> Freeze for SassFunction<'s>
impl<'s> RefUnwindSafe for SassFunction<'s>
impl<'s> Send for SassFunction<'s>
impl<'s> Sync for SassFunction<'s>
impl<'s> Unpin for SassFunction<'s>
impl<'s> UnsafeUnpin for SassFunction<'s>
impl<'s> UnwindSafe for SassFunction<'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