pub enum Resume {
Continue,
Remapped,
Undecodable,
}Variants§
Continue
Step set unchanged — skip completed steps and continue.
Remapped
Step set changed but the version maps — resume at the mapped step.
Undecodable
No mapping. Terminal. Silently restarting would re-run completed side effects with no signal that a deploy caused it.
Trait Implementations§
impl Copy for Resume
impl Eq for Resume
impl StructuralPartialEq for Resume
Auto Trait Implementations§
impl Freeze for Resume
impl RefUnwindSafe for Resume
impl Send for Resume
impl Sync for Resume
impl Unpin for Resume
impl UnsafeUnpin for Resume
impl UnwindSafe for Resume
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