pub struct AstMixin {
pub name: Identifier,
pub args: ArgumentDeclaration,
pub body: Vec<AstStmt>,
pub has_content: bool,
}Fields§
§name: Identifier§args: ArgumentDeclaration§body: Vec<AstStmt>§has_content: boolWhether the mixin contains a @content rule.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for AstMixin
impl RefUnwindSafe for AstMixin
impl Send for AstMixin
impl Sync for AstMixin
impl Unpin for AstMixin
impl UnwindSafe for AstMixin
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