Struct aws_sdk_omics::operation::list_workflows::ListWorkflowsInput
source · #[non_exhaustive]pub struct ListWorkflowsInput {
pub type: Option<WorkflowType>,
pub name: Option<String>,
pub starting_token: Option<String>,
pub max_results: Option<i32>,
}
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.type: Option<WorkflowType>
The workflows' type.
name: Option<String>
The workflows' name.
starting_token: Option<String>
Specify the pagination token from a previous request to retrieve the next page of results.
max_results: Option<i32>
The maximum number of workflows to return in one page of results.
Implementations§
source§impl ListWorkflowsInput
impl ListWorkflowsInput
sourcepub fn type(&self) -> Option<&WorkflowType>
pub fn type(&self) -> Option<&WorkflowType>
The workflows' type.
sourcepub fn starting_token(&self) -> Option<&str>
pub fn starting_token(&self) -> Option<&str>
Specify the pagination token from a previous request to retrieve the next page of results.
sourcepub fn max_results(&self) -> Option<i32>
pub fn max_results(&self) -> Option<i32>
The maximum number of workflows to return in one page of results.
source§impl ListWorkflowsInput
impl ListWorkflowsInput
sourcepub fn builder() -> ListWorkflowsInputBuilder
pub fn builder() -> ListWorkflowsInputBuilder
Creates a new builder-style object to manufacture ListWorkflowsInput
.
Trait Implementations§
source§impl Clone for ListWorkflowsInput
impl Clone for ListWorkflowsInput
source§fn clone(&self) -> ListWorkflowsInput
fn clone(&self) -> ListWorkflowsInput
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 ListWorkflowsInput
impl Debug for ListWorkflowsInput
source§impl PartialEq for ListWorkflowsInput
impl PartialEq for ListWorkflowsInput
source§fn eq(&self, other: &ListWorkflowsInput) -> bool
fn eq(&self, other: &ListWorkflowsInput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ListWorkflowsInput
Auto Trait Implementations§
impl RefUnwindSafe for ListWorkflowsInput
impl Send for ListWorkflowsInput
impl Sync for ListWorkflowsInput
impl Unpin for ListWorkflowsInput
impl UnwindSafe for ListWorkflowsInput
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.