Enum gbnf::ProductionItem
source · pub enum ProductionItem {
LineBreak,
Comment(String),
Terminal(TerminalSymbol, RepetitionType),
NonTerminal(NonTerminalSymbol, RepetitionType),
Group(Box<Production>, RepetitionType),
OneOf(Vec<Production>),
CharacterSet(CharacterSet, RepetitionType),
}Variants§
LineBreak
Comment(String)
Terminal(TerminalSymbol, RepetitionType)
NonTerminal(NonTerminalSymbol, RepetitionType)
Group(Box<Production>, RepetitionType)
OneOf(Vec<Production>)
CharacterSet(CharacterSet, RepetitionType)
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