#[non_exhaustive]pub struct GetFlowTemplateOutput {
pub description: Option<FlowTemplateDescription>,
/* private fields */
}
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.description: Option<FlowTemplateDescription>
The object that describes the specified workflow.
Implementations§
source§impl GetFlowTemplateOutput
impl GetFlowTemplateOutput
sourcepub fn description(&self) -> Option<&FlowTemplateDescription>
pub fn description(&self) -> Option<&FlowTemplateDescription>
The object that describes the specified workflow.
source§impl GetFlowTemplateOutput
impl GetFlowTemplateOutput
sourcepub fn builder() -> GetFlowTemplateOutputBuilder
pub fn builder() -> GetFlowTemplateOutputBuilder
Creates a new builder-style object to manufacture GetFlowTemplateOutput
.
Trait Implementations§
source§impl Clone for GetFlowTemplateOutput
impl Clone for GetFlowTemplateOutput
source§fn clone(&self) -> GetFlowTemplateOutput
fn clone(&self) -> GetFlowTemplateOutput
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 GetFlowTemplateOutput
impl Debug for GetFlowTemplateOutput
source§impl PartialEq for GetFlowTemplateOutput
impl PartialEq for GetFlowTemplateOutput
source§fn eq(&self, other: &GetFlowTemplateOutput) -> bool
fn eq(&self, other: &GetFlowTemplateOutput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for GetFlowTemplateOutput
impl RequestId for GetFlowTemplateOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
Returns the request ID, or
None
if the service could not be reached.impl StructuralPartialEq for GetFlowTemplateOutput
Auto Trait Implementations§
impl Freeze for GetFlowTemplateOutput
impl RefUnwindSafe for GetFlowTemplateOutput
impl Send for GetFlowTemplateOutput
impl Sync for GetFlowTemplateOutput
impl Unpin for GetFlowTemplateOutput
impl UnwindSafe for GetFlowTemplateOutput
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> 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>
Creates a shared type from an unshared type.