pub struct SagaStep {
pub name: String,
pub completed: bool,
pub failed: bool,
}Expand description
A saga step with forward action and compensation.
Fields§
§name: String§completed: bool§failed: boolTrait Implementations§
Auto Trait Implementations§
impl Freeze for SagaStep
impl RefUnwindSafe for SagaStep
impl Send for SagaStep
impl Sync for SagaStep
impl Unpin for SagaStep
impl UnsafeUnpin for SagaStep
impl UnwindSafe for SagaStep
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