pub struct WorkflowTypeInfos {
pub next_page_token: Option<String>,
pub type_infos: Vec<WorkflowTypeInfo>,
}
Expand description
Contains a paginated list of information structures about workflow types.
Fields§
§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.
type_infos: Vec<WorkflowTypeInfo>
The list of workflow type information.
Trait Implementations§
Source§impl Clone for WorkflowTypeInfos
impl Clone for WorkflowTypeInfos
Source§fn clone(&self) -> WorkflowTypeInfos
fn clone(&self) -> WorkflowTypeInfos
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 WorkflowTypeInfos
impl Debug for WorkflowTypeInfos
Source§impl Default for WorkflowTypeInfos
impl Default for WorkflowTypeInfos
Source§fn default() -> WorkflowTypeInfos
fn default() -> WorkflowTypeInfos
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for WorkflowTypeInfos
impl<'de> Deserialize<'de> for WorkflowTypeInfos
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 WorkflowTypeInfos
impl PartialEq for WorkflowTypeInfos
impl StructuralPartialEq for WorkflowTypeInfos
Auto Trait Implementations§
impl Freeze for WorkflowTypeInfos
impl RefUnwindSafe for WorkflowTypeInfos
impl Send for WorkflowTypeInfos
impl Sync for WorkflowTypeInfos
impl Unpin for WorkflowTypeInfos
impl UnwindSafe for WorkflowTypeInfos
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