pub struct Step {
pub data: StepData,
pub output: Vec<u8>,
pub next: Vec<Step>,
}
Expand description
An execution step in a timestamp verification
Fields§
§data: StepData
The contents of the step
output: Vec<u8>
The output after execution
next: Vec<Step>
A list of steps to execute after this one
Trait Implementations§
impl Eq for Step
impl StructuralPartialEq for Step
Auto Trait Implementations§
impl Freeze for Step
impl RefUnwindSafe for Step
impl Send for Step
impl Sync for Step
impl Unpin for Step
impl UnwindSafe for Step
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