pub struct LR1ParseTable<'a, T: 'a, N: 'a, A: 'a> {
pub states: Vec<LR1State<'a, T, N, A>>,
}
Expand description
An LR(1) parse table.
Fields§
§states: Vec<LR1State<'a, T, N, A>>
Trait Implementations§
Auto Trait Implementations§
impl<'a, T, N, A> Freeze for LR1ParseTable<'a, T, N, A>
impl<'a, T, N, A> RefUnwindSafe for LR1ParseTable<'a, T, N, A>
impl<'a, T, N, A> Send for LR1ParseTable<'a, T, N, A>
impl<'a, T, N, A> Sync for LR1ParseTable<'a, T, N, A>
impl<'a, T, N, A> Unpin for LR1ParseTable<'a, T, N, A>
impl<'a, T, N, A> UnwindSafe for LR1ParseTable<'a, T, N, 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