pub struct DescribeStandardsRequest {
pub max_results: Option<i64>,
pub next_token: Option<String>,
}
Fields§
§max_results: Option<i64>
The maximum number of standards to return.
next_token: Option<String>
The token that is required for pagination. On your first call to the DescribeStandards
operation, set the value of this parameter to NULL
.
For subsequent calls to the operation, to continue listing data, set the value of this parameter to the value returned from the previous response.
Trait Implementations§
Source§impl Clone for DescribeStandardsRequest
impl Clone for DescribeStandardsRequest
Source§fn clone(&self) -> DescribeStandardsRequest
fn clone(&self) -> DescribeStandardsRequest
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 DescribeStandardsRequest
impl Debug for DescribeStandardsRequest
Source§impl Default for DescribeStandardsRequest
impl Default for DescribeStandardsRequest
Source§fn default() -> DescribeStandardsRequest
fn default() -> DescribeStandardsRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for DescribeStandardsRequest
impl PartialEq for DescribeStandardsRequest
Source§impl Serialize for DescribeStandardsRequest
impl Serialize for DescribeStandardsRequest
impl StructuralPartialEq for DescribeStandardsRequest
Auto Trait Implementations§
impl Freeze for DescribeStandardsRequest
impl RefUnwindSafe for DescribeStandardsRequest
impl Send for DescribeStandardsRequest
impl Sync for DescribeStandardsRequest
impl Unpin for DescribeStandardsRequest
impl UnwindSafe for DescribeStandardsRequest
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