pub struct DFA<State> {
pub start: State,
pub delta: HashMap<(State, char), State>,
pub F: HashSet<State>,
}Fields§
§start: State§delta: HashMap<(State, char), State>§F: HashSet<State>Trait Implementations§
Auto Trait Implementations§
impl<State> Freeze for DFA<State>where
State: Freeze,
impl<State> RefUnwindSafe for DFA<State>where
State: RefUnwindSafe,
impl<State> Send for DFA<State>where
State: Send,
impl<State> Sync for DFA<State>where
State: Sync,
impl<State> Unpin for DFA<State>where
State: Unpin,
impl<State> UnwindSafe for DFA<State>where
State: UnwindSafe,
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