#[non_exhaustive]pub struct ListScansInput {
pub next_token: Option<String>,
pub max_results: Option<i32>,
}
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.next_token: Option<String>
A token to use for paginating results that are returned in the response. Set the value of this parameter to null for the first request. For subsequent calls, use the nextToken
value returned from the previous request to continue listing results after the first page.
max_results: Option<i32>
The maximum number of results to return in the response. Use this parameter when paginating results. If additional results exist beyond the number you specify, the nextToken
element is returned in the response. Use nextToken
in a subsequent request to retrieve additional results.
Implementations§
source§impl ListScansInput
impl ListScansInput
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
A token to use for paginating results that are returned in the response. Set the value of this parameter to null for the first request. For subsequent calls, use the nextToken
value returned from the previous request to continue listing results after the first page.
sourcepub fn max_results(&self) -> Option<i32>
pub fn max_results(&self) -> Option<i32>
The maximum number of results to return in the response. Use this parameter when paginating results. If additional results exist beyond the number you specify, the nextToken
element is returned in the response. Use nextToken
in a subsequent request to retrieve additional results.
source§impl ListScansInput
impl ListScansInput
sourcepub fn builder() -> ListScansInputBuilder
pub fn builder() -> ListScansInputBuilder
Creates a new builder-style object to manufacture ListScansInput
.
Trait Implementations§
source§impl Clone for ListScansInput
impl Clone for ListScansInput
source§fn clone(&self) -> ListScansInput
fn clone(&self) -> ListScansInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ListScansInput
impl Debug for ListScansInput
source§impl PartialEq for ListScansInput
impl PartialEq for ListScansInput
source§fn eq(&self, other: &ListScansInput) -> bool
fn eq(&self, other: &ListScansInput) -> bool
self
and other
values to be equal, and is used
by ==
.