pub struct DfaState {
pub state_number: usize,
pub configs: AtnConfigSet,
pub edges: BTreeMap<i32, usize>,
pub is_accept_state: bool,
pub prediction: Option<usize>,
pub requires_full_context: bool,
}Fields§
§state_number: usize§configs: AtnConfigSet§edges: BTreeMap<i32, usize>§is_accept_state: bool§prediction: Option<usize>§requires_full_context: boolImplementations§
Trait Implementations§
impl Eq for DfaState
impl StructuralPartialEq for DfaState
Auto Trait Implementations§
impl Freeze for DfaState
impl RefUnwindSafe for DfaState
impl !Send for DfaState
impl !Sync for DfaState
impl Unpin for DfaState
impl UnsafeUnpin for DfaState
impl UnwindSafe for DfaState
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