#[non_exhaustive]pub struct DescribeExecutionInput {
pub execution_id: Option<String>,
pub workflow_id: Option<String>,
}Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.execution_id: Option<String>A unique identifier for the execution of a workflow.
workflow_id: Option<String>A unique identifier for the workflow.
Implementations§
source§impl DescribeExecutionInput
impl DescribeExecutionInput
sourcepub fn execution_id(&self) -> Option<&str>
pub fn execution_id(&self) -> Option<&str>
A unique identifier for the execution of a workflow.
sourcepub fn workflow_id(&self) -> Option<&str>
pub fn workflow_id(&self) -> Option<&str>
A unique identifier for the workflow.
source§impl DescribeExecutionInput
impl DescribeExecutionInput
sourcepub fn builder() -> DescribeExecutionInputBuilder
pub fn builder() -> DescribeExecutionInputBuilder
Creates a new builder-style object to manufacture DescribeExecutionInput.
Trait Implementations§
source§impl Clone for DescribeExecutionInput
impl Clone for DescribeExecutionInput
source§fn clone(&self) -> DescribeExecutionInput
fn clone(&self) -> DescribeExecutionInput
Returns a copy 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 DescribeExecutionInput
impl Debug for DescribeExecutionInput
source§impl PartialEq for DescribeExecutionInput
impl PartialEq for DescribeExecutionInput
source§fn eq(&self, other: &DescribeExecutionInput) -> bool
fn eq(&self, other: &DescribeExecutionInput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for DescribeExecutionInput
Auto Trait Implementations§
impl RefUnwindSafe for DescribeExecutionInput
impl Send for DescribeExecutionInput
impl Sync for DescribeExecutionInput
impl Unpin for DescribeExecutionInput
impl UnwindSafe for DescribeExecutionInput
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