pub struct TransitionCtx {
pub attempt: u32,
pub max_attempts: u32,
pub crash_attempt: u32,
pub crash_limit: u32,
pub retention_ms: i64,
}Fields§
§attempt: u32§max_attempts: u32§crash_attempt: u32§crash_limit: u32§retention_ms: i64retention policy decides whether success completes or deletes. 0 = ephemeral.
Auto Trait Implementations§
impl Freeze for TransitionCtx
impl RefUnwindSafe for TransitionCtx
impl Send for TransitionCtx
impl Sync for TransitionCtx
impl Unpin for TransitionCtx
impl UnsafeUnpin for TransitionCtx
impl UnwindSafe for TransitionCtx
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