pub enum ParsedStep<STEP, const N: usize>where
STEP: Step<N>,{
LibLoad(HashMap<String, (u64, u64)>),
TraceStep(STEP),
Final(Output),
}Variants§
Trait Implementations§
Auto Trait Implementations§
impl<STEP, const N: usize> Freeze for ParsedStep<STEP, N>where
STEP: Freeze,
impl<STEP, const N: usize> RefUnwindSafe for ParsedStep<STEP, N>where
STEP: RefUnwindSafe,
impl<STEP, const N: usize> Send for ParsedStep<STEP, N>where
STEP: Send,
impl<STEP, const N: usize> Sync for ParsedStep<STEP, N>where
STEP: Sync,
impl<STEP, const N: usize> Unpin for ParsedStep<STEP, N>where
STEP: Unpin,
impl<STEP, const N: usize> UnwindSafe for ParsedStep<STEP, N>where
STEP: 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