pub struct Graph<'inst, 'nodes, Input, Output> { /* private fields */ }
Expand description
A deterministic finite automaton (DFA) that can be used to process sequential input to produce an output.
Implementations§
Source§impl<'nodes, 'inst, Input: Segmentable, Output> Graph<'inst, 'nodes, Input, Output>
impl<'nodes, 'inst, Input: Segmentable, Output> Graph<'inst, 'nodes, Input, Output>
Trait Implementations§
Source§impl<'inst, 'nodes, Input: Clone, Output: Clone> Clone for Graph<'inst, 'nodes, Input, Output>
impl<'inst, 'nodes, Input: Clone, Output: Clone> Clone for Graph<'inst, 'nodes, Input, Output>
Source§impl<'inst, 'nodes, Input: Debug, Output: Debug> Debug for Graph<'inst, 'nodes, Input, Output>
impl<'inst, 'nodes, Input: Debug, Output: Debug> Debug for Graph<'inst, 'nodes, Input, Output>
Source§impl<'inst, 'nodes, Input: Ord, Output: Ord> Ord for Graph<'inst, 'nodes, Input, Output>
impl<'inst, 'nodes, Input: Ord, Output: Ord> Ord for Graph<'inst, 'nodes, Input, Output>
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl<'inst, 'nodes, Input: PartialEq, Output: PartialEq> PartialEq for Graph<'inst, 'nodes, Input, Output>
impl<'inst, 'nodes, Input: PartialEq, Output: PartialEq> PartialEq for Graph<'inst, 'nodes, Input, Output>
Source§impl<'inst, 'nodes, Input: PartialOrd, Output: PartialOrd> PartialOrd for Graph<'inst, 'nodes, Input, Output>
impl<'inst, 'nodes, Input: PartialOrd, Output: PartialOrd> PartialOrd for Graph<'inst, 'nodes, Input, Output>
impl<'inst, 'nodes, Input: Copy, Output: Copy> Copy for Graph<'inst, 'nodes, Input, Output>
impl<'inst, 'nodes, Input: Eq, Output: Eq> Eq for Graph<'inst, 'nodes, Input, Output>
impl<'inst, 'nodes, Input, Output> StructuralPartialEq for Graph<'inst, 'nodes, Input, Output>
Auto Trait Implementations§
impl<'inst, 'nodes, Input, Output> Freeze for Graph<'inst, 'nodes, Input, Output>
impl<'inst, 'nodes, Input, Output> RefUnwindSafe for Graph<'inst, 'nodes, Input, Output>where
Output: RefUnwindSafe,
Input: RefUnwindSafe,
impl<'inst, 'nodes, Input, Output> Send for Graph<'inst, 'nodes, Input, Output>
impl<'inst, 'nodes, Input, Output> Sync for Graph<'inst, 'nodes, Input, Output>
impl<'inst, 'nodes, Input, Output> Unpin for Graph<'inst, 'nodes, Input, Output>
impl<'inst, 'nodes, Input, Output> UnwindSafe for Graph<'inst, 'nodes, Input, Output>where
Output: RefUnwindSafe,
Input: RefUnwindSafe,
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