pub struct SagaStep {
pub name: String,
pub service: String,
pub action: String,
pub compensate: String,
pub input: Option<Value>,
pub timeout_secs: u64,
}Expand description
A single step within a saga.
Fields§
§name: StringStep name (unique within saga).
service: StringTarget service name (must exist in workspace).
action: StringForward action: HTTP method + path (e.g. “POST /v1/reservations”).
compensate: StringCompensating action: HTTP method + path, run on rollback.
input: Option<Value>Optional input mapping (JSON template).
timeout_secs: u64Step timeout in seconds. Default: 30.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for SagaStep
impl<'de> Deserialize<'de> for SagaStep
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl StructuralPartialEq for SagaStep
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more