pub enum GroupData {
Decl(CompoundName),
Temp(Vec<(EntityClass, bool)>),
}
Variants§
Decl(CompoundName)
A group declaration.
Temp(Vec<(EntityClass, bool)>)
A group template. Each element consists of an entity class, and a bool
that indicates whether a <>
was present in the source text.
Trait Implementations§
impl Eq for GroupData
impl StructuralPartialEq for GroupData
Auto Trait Implementations§
impl Freeze for GroupData
impl RefUnwindSafe for GroupData
impl Send for GroupData
impl Sync for GroupData
impl Unpin for GroupData
impl UnwindSafe for GroupData
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