#[non_exhaustive]pub struct ListTestGridProjectsInput {
pub max_result: Option<i32>,
pub next_token: Option<String>,
}
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.max_result: Option<i32>
Return no more than this number of results.
next_token: Option<String>
From a response, used to continue a paginated listing.
Implementations§
source§impl ListTestGridProjectsInput
impl ListTestGridProjectsInput
sourcepub fn max_result(&self) -> Option<i32>
pub fn max_result(&self) -> Option<i32>
Return no more than this number of results.
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
From a response, used to continue a paginated listing.
source§impl ListTestGridProjectsInput
impl ListTestGridProjectsInput
sourcepub fn builder() -> ListTestGridProjectsInputBuilder
pub fn builder() -> ListTestGridProjectsInputBuilder
Creates a new builder-style object to manufacture ListTestGridProjectsInput
.
Trait Implementations§
source§impl Clone for ListTestGridProjectsInput
impl Clone for ListTestGridProjectsInput
source§fn clone(&self) -> ListTestGridProjectsInput
fn clone(&self) -> ListTestGridProjectsInput
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 ListTestGridProjectsInput
impl Debug for ListTestGridProjectsInput
source§impl PartialEq<ListTestGridProjectsInput> for ListTestGridProjectsInput
impl PartialEq<ListTestGridProjectsInput> for ListTestGridProjectsInput
source§fn eq(&self, other: &ListTestGridProjectsInput) -> bool
fn eq(&self, other: &ListTestGridProjectsInput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ListTestGridProjectsInput
Auto Trait Implementations§
impl RefUnwindSafe for ListTestGridProjectsInput
impl Send for ListTestGridProjectsInput
impl Sync for ListTestGridProjectsInput
impl Unpin for ListTestGridProjectsInput
impl UnwindSafe for ListTestGridProjectsInput
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