pub struct StepFunctionsExecutionTreeNode {
pub arn: String,
pub state_machine_arn: String,
pub status: String,
pub started_at: String,
pub stopped_at: Option<String>,
pub children: Vec<StepFunctionsExecutionTreeNode>,
}Fields§
§arn: String§state_machine_arn: String§status: String§started_at: String§stopped_at: Option<String>§children: Vec<StepFunctionsExecutionTreeNode>Trait Implementations§
Source§impl Clone for StepFunctionsExecutionTreeNode
impl Clone for StepFunctionsExecutionTreeNode
Source§fn clone(&self) -> StepFunctionsExecutionTreeNode
fn clone(&self) -> StepFunctionsExecutionTreeNode
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<'de> Deserialize<'de> for StepFunctionsExecutionTreeNode
impl<'de> Deserialize<'de> for StepFunctionsExecutionTreeNode
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 StepFunctionsExecutionTreeNode
impl RefUnwindSafe for StepFunctionsExecutionTreeNode
impl Send for StepFunctionsExecutionTreeNode
impl Sync for StepFunctionsExecutionTreeNode
impl Unpin for StepFunctionsExecutionTreeNode
impl UnsafeUnpin for StepFunctionsExecutionTreeNode
impl UnwindSafe for StepFunctionsExecutionTreeNode
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