#[non_exhaustive]pub struct ListClosedWorkflowExecutionsOutput {
pub execution_infos: Option<Vec<WorkflowExecutionInfo>>,
pub next_page_token: Option<String>,
}
Expand description
Contains a paginated list of information about workflow executions.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.execution_infos: Option<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.
Implementations
The list of workflow information structures.
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.
Creates a new builder-style object to manufacture ListClosedWorkflowExecutionsOutput
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl Send for ListClosedWorkflowExecutionsOutput
impl Sync for ListClosedWorkflowExecutionsOutput
impl Unpin for ListClosedWorkflowExecutionsOutput
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more