pub struct DfaState {
pub table: Vec<(CharRange, usize, bool)>,
pub end_num: Option<usize>,
}
Fields§
§table: Vec<(CharRange, usize, bool)>
§end_num: Option<usize>
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 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