pub struct StepFunctionsExecution {
pub execution_arn: String,
pub state_machine_arn: String,
pub name: String,
pub status: String,
pub input: Option<String>,
pub output: Option<String>,
pub start_date: String,
pub stop_date: Option<String>,
}Fields§
§execution_arn: String§state_machine_arn: String§name: String§status: String§input: Option<String>§output: Option<String>§start_date: String§stop_date: Option<String>Trait Implementations§
Source§impl Clone for StepFunctionsExecution
impl Clone for StepFunctionsExecution
Source§fn clone(&self) -> StepFunctionsExecution
fn clone(&self) -> StepFunctionsExecution
Returns a duplicate of the value. Read more
1.0.0 · 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 StepFunctionsExecution
impl Debug for StepFunctionsExecution
Source§impl<'de> Deserialize<'de> for StepFunctionsExecution
impl<'de> Deserialize<'de> for StepFunctionsExecution
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 StepFunctionsExecution
impl RefUnwindSafe for StepFunctionsExecution
impl Send for StepFunctionsExecution
impl Sync for StepFunctionsExecution
impl Unpin for StepFunctionsExecution
impl UnsafeUnpin for StepFunctionsExecution
impl UnwindSafe for StepFunctionsExecution
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