pub struct WorkflowExecutionInfos {
pub execution_infos: Vec<WorkflowExecutionInfo>,
pub next_page_token: Option<String>,
}
Expand description
Contains a paginated list of information about workflow executions.
Fields§
§execution_infos: Vec<WorkflowExecutionInfo>
The list of workflow information structures.
next_page_token: Option<String>
If a NextPageToken
was returned by a previous call, there are more results available. To retrieve the next page of results, make the call again using the returned token in nextPageToken
. Keep all other arguments unchanged.
The configured maximumPageSize
determines how many results can be returned in a single call.
Trait Implementations§
Source§impl Clone for WorkflowExecutionInfos
impl Clone for WorkflowExecutionInfos
Source§fn clone(&self) -> WorkflowExecutionInfos
fn clone(&self) -> WorkflowExecutionInfos
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 WorkflowExecutionInfos
impl Debug for WorkflowExecutionInfos
Source§impl Default for WorkflowExecutionInfos
impl Default for WorkflowExecutionInfos
Source§fn default() -> WorkflowExecutionInfos
fn default() -> WorkflowExecutionInfos
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for WorkflowExecutionInfos
impl<'de> Deserialize<'de> for WorkflowExecutionInfos
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
Source§impl PartialEq for WorkflowExecutionInfos
impl PartialEq for WorkflowExecutionInfos
impl StructuralPartialEq for WorkflowExecutionInfos
Auto Trait Implementations§
impl Freeze for WorkflowExecutionInfos
impl RefUnwindSafe for WorkflowExecutionInfos
impl Send for WorkflowExecutionInfos
impl Sync for WorkflowExecutionInfos
impl Unpin for WorkflowExecutionInfos
impl UnwindSafe for WorkflowExecutionInfos
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