pub struct Lr0Node {
pub items: Rc<Lr0Items>,
pub link: BTreeMap<Symbol, u32>,
}Expand description
An LR(0) node.
Fields§
§items: Rc<Lr0Items>List of LR(0) items.
link: BTreeMap<Symbol, u32>List of transitions through terminals.
Trait Implementations§
impl Eq for Lr0Node
impl StructuralPartialEq for Lr0Node
Auto Trait Implementations§
impl Freeze for Lr0Node
impl RefUnwindSafe for Lr0Node
impl !Send for Lr0Node
impl !Sync for Lr0Node
impl Unpin for Lr0Node
impl UnwindSafe for Lr0Node
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