pub struct StepFunctionsSyncExecution {
pub execution_arn: String,
pub state_machine_arn: String,
pub name: String,
pub status: String,
pub input: Option<String>,
pub output: Option<String>,
pub started_at: String,
pub stopped_at: Option<String>,
pub duration_ms: i64,
pub billing_details: StepFunctionsSyncBillingDetails,
}Fields§
§execution_arn: String§state_machine_arn: String§name: String§status: String§input: Option<String>§output: Option<String>§started_at: String§stopped_at: Option<String>§duration_ms: i64§billing_details: StepFunctionsSyncBillingDetailsTrait Implementations§
Source§impl Clone for StepFunctionsSyncExecution
impl Clone for StepFunctionsSyncExecution
Source§fn clone(&self) -> StepFunctionsSyncExecution
fn clone(&self) -> StepFunctionsSyncExecution
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 StepFunctionsSyncExecution
impl Debug for StepFunctionsSyncExecution
Source§impl<'de> Deserialize<'de> for StepFunctionsSyncExecution
impl<'de> Deserialize<'de> for StepFunctionsSyncExecution
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
Auto Trait Implementations§
impl Freeze for StepFunctionsSyncExecution
impl RefUnwindSafe for StepFunctionsSyncExecution
impl Send for StepFunctionsSyncExecution
impl Sync for StepFunctionsSyncExecution
impl Unpin for StepFunctionsSyncExecution
impl UnsafeUnpin for StepFunctionsSyncExecution
impl UnwindSafe for StepFunctionsSyncExecution
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