pub enum ExtensionStep<T> {
Match,
NoMatch,
Continue(Vec<ExtensionWork<T>>),
}Expand description
Result of evaluating one queue item without recursive calls.
Variants§
Match
This branch matched.
NoMatch
This branch ended without matching.
Continue(Vec<ExtensionWork<T>>)
Add bounded continuation work to the queue.
Trait Implementations§
Source§impl<T: Clone> Clone for ExtensionStep<T>
impl<T: Clone> Clone for ExtensionStep<T>
Source§fn clone(&self) -> ExtensionStep<T>
fn clone(&self) -> ExtensionStep<T>
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<T: Debug> Debug for ExtensionStep<T>
impl<T: Debug> Debug for ExtensionStep<T>
impl<T: Eq> Eq for ExtensionStep<T>
Source§impl<T: PartialEq> PartialEq for ExtensionStep<T>
impl<T: PartialEq> PartialEq for ExtensionStep<T>
impl<T: PartialEq> StructuralPartialEq for ExtensionStep<T>
Auto Trait Implementations§
impl<T> Freeze for ExtensionStep<T>
impl<T> RefUnwindSafe for ExtensionStep<T>where
T: RefUnwindSafe,
impl<T> Send for ExtensionStep<T>where
T: Send,
impl<T> Sync for ExtensionStep<T>where
T: Sync,
impl<T> Unpin for ExtensionStep<T>where
T: Unpin,
impl<T> UnsafeUnpin for ExtensionStep<T>
impl<T> UnwindSafe for ExtensionStep<T>where
T: 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