pub struct Node<'inst, Input, Output> { /* private fields */ }
Expand description
A node in a DFA.
Implementations§
Source§impl<'inst, Input: Segmentable, Output> Node<'inst, Input, Output>
impl<'inst, Input: Segmentable, Output> Node<'inst, Input, Output>
Trait Implementations§
Source§impl<'inst, Input: Ord, Output: Ord> Ord for Node<'inst, Input, Output>
impl<'inst, Input: Ord, Output: Ord> Ord for Node<'inst, 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, Input: PartialOrd, Output: PartialOrd> PartialOrd for Node<'inst, Input, Output>
impl<'inst, Input: PartialOrd, Output: PartialOrd> PartialOrd for Node<'inst, Input, Output>
impl<'inst, Input: Eq, Output: Eq> Eq for Node<'inst, Input, Output>
impl<'inst, Input, Output> StructuralPartialEq for Node<'inst, Input, Output>
Auto Trait Implementations§
impl<'inst, Input, Output> Freeze for Node<'inst, Input, Output>where
Output: Freeze,
impl<'inst, Input, Output> RefUnwindSafe for Node<'inst, Input, Output>where
Output: RefUnwindSafe,
Input: RefUnwindSafe,
impl<'inst, Input, Output> Send for Node<'inst, Input, Output>
impl<'inst, Input, Output> Sync for Node<'inst, Input, Output>
impl<'inst, Input, Output> Unpin for Node<'inst, Input, Output>where
Output: Unpin,
impl<'inst, Input, Output> UnwindSafe for Node<'inst, Input, Output>where
Output: UnwindSafe,
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