pub struct ResumeContext {
pub step_map: HashMap<String, HashMap<u32, WorkflowRunStep>>,
}Expand description
Pre-loaded context for resuming a workflow run.
Fields§
§step_map: HashMap<String, HashMap<u32, WorkflowRunStep>>Completed step records keyed by (step_name, iteration), for O(1) zero-alloc lookup.
Trait Implementations§
Source§impl Clone for ResumeContext
impl Clone for ResumeContext
Source§fn clone(&self) -> ResumeContext
fn clone(&self) -> ResumeContext
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 moreAuto Trait Implementations§
impl Freeze for ResumeContext
impl RefUnwindSafe for ResumeContext
impl Send for ResumeContext
impl Sync for ResumeContext
impl Unpin for ResumeContext
impl UnsafeUnpin for ResumeContext
impl UnwindSafe for ResumeContext
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