pub struct AstGroup<'a> {
pub important: bool,
pub head: AstStyle<'a>,
pub children: Vec<AstGroupItem<'a>>,
}
Expand description
variant:ast-style(grouped)
Fields§
§important: bool
Is a !important
group
head: AstStyle<'a>
§children: Vec<AstGroupItem<'a>>
Implementations§
Trait Implementations§
impl<'a> StructuralPartialEq for AstGroup<'a>
Auto Trait Implementations§
impl<'a> Freeze for AstGroup<'a>
impl<'a> RefUnwindSafe for AstGroup<'a>
impl<'a> Send for AstGroup<'a>
impl<'a> Sync for AstGroup<'a>
impl<'a> Unpin for AstGroup<'a>
impl<'a> UnwindSafe for AstGroup<'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