pub struct ListFlowDefinitionsResponse {
pub flow_definition_summaries: Vec<FlowDefinitionSummary>,
pub next_token: Option<String>,
}Fields§
§flow_definition_summaries: Vec<FlowDefinitionSummary>An array of objects describing the flow definitions.
next_token: Option<String>A token to resume pagination.
Trait Implementations§
Source§impl Clone for ListFlowDefinitionsResponse
impl Clone for ListFlowDefinitionsResponse
Source§fn clone(&self) -> ListFlowDefinitionsResponse
fn clone(&self) -> ListFlowDefinitionsResponse
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 ListFlowDefinitionsResponse
impl Debug for ListFlowDefinitionsResponse
Source§impl Default for ListFlowDefinitionsResponse
impl Default for ListFlowDefinitionsResponse
Source§fn default() -> ListFlowDefinitionsResponse
fn default() -> ListFlowDefinitionsResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ListFlowDefinitionsResponse
impl<'de> Deserialize<'de> for ListFlowDefinitionsResponse
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
impl StructuralPartialEq for ListFlowDefinitionsResponse
Auto Trait Implementations§
impl Freeze for ListFlowDefinitionsResponse
impl RefUnwindSafe for ListFlowDefinitionsResponse
impl Send for ListFlowDefinitionsResponse
impl Sync for ListFlowDefinitionsResponse
impl Unpin for ListFlowDefinitionsResponse
impl UnwindSafe for ListFlowDefinitionsResponse
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