pub struct DFA {
pub ncount: usize,
pub jumps: Vec<[usize; 255]>,
pub accepts: Vec<usize>,
pub labels: Vec<String>,
pub dead: usize,
}Fields§
§ncount: usize§jumps: Vec<[usize; 255]>§accepts: Vec<usize>§labels: Vec<String>§dead: usizeImplementations§
Auto Trait Implementations§
impl Freeze for DFA
impl RefUnwindSafe for DFA
impl Send for DFA
impl Sync for DFA
impl Unpin for DFA
impl UnwindSafe for DFA
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