Enum gbnf::ProductionItem
source · pub enum ProductionItem {
Comment(String),
Terminal(TerminalSymbol),
NonTerminal(NonTerminalSymbol),
Group(Box<Production>),
OneOf(Vec<Production>),
Repetition(Repetition),
}Variants§
Comment(String)
Terminal(TerminalSymbol)
NonTerminal(NonTerminalSymbol)
Group(Box<Production>)
OneOf(Vec<Production>)
Repetition(Repetition)
Trait Implementations§
source§impl Clone for ProductionItem
impl Clone for ProductionItem
source§fn clone(&self) -> ProductionItem
fn clone(&self) -> ProductionItem
Returns a copy 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 moreAuto Trait Implementations§
impl RefUnwindSafe for ProductionItem
impl Send for ProductionItem
impl Sync for ProductionItem
impl Unpin for ProductionItem
impl UnwindSafe for ProductionItem
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