pub struct RecoveryContext {
pub attempt_id: String,
pub run_id: RunId,
}Expand description
Context produced after checkpoint reload for replay. Pass run_id to replay logic.
Fields§
§attempt_id: String§run_id: RunIdImplementations§
Trait Implementations§
Source§impl Clone for RecoveryContext
impl Clone for RecoveryContext
Source§fn clone(&self) -> RecoveryContext
fn clone(&self) -> RecoveryContext
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for RecoveryContext
impl Debug for RecoveryContext
Source§impl Default for RecoveryContext
impl Default for RecoveryContext
Source§fn default() -> RecoveryContext
fn default() -> RecoveryContext
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for RecoveryContext
impl RefUnwindSafe for RecoveryContext
impl Send for RecoveryContext
impl Sync for RecoveryContext
impl Unpin for RecoveryContext
impl UnsafeUnpin for RecoveryContext
impl UnwindSafe for RecoveryContext
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