pub struct DescribeStandardsResponse {
pub next_token: Option<String>,
pub standards: Option<Vec<Standard>>,
}
Fields§
§next_token: Option<String>
The pagination token to use to request the next page of results.
standards: Option<Vec<Standard>>
A list of available standards.
Trait Implementations§
Source§impl Clone for DescribeStandardsResponse
impl Clone for DescribeStandardsResponse
Source§fn clone(&self) -> DescribeStandardsResponse
fn clone(&self) -> DescribeStandardsResponse
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 DescribeStandardsResponse
impl Debug for DescribeStandardsResponse
Source§impl Default for DescribeStandardsResponse
impl Default for DescribeStandardsResponse
Source§fn default() -> DescribeStandardsResponse
fn default() -> DescribeStandardsResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DescribeStandardsResponse
impl<'de> Deserialize<'de> for DescribeStandardsResponse
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
impl StructuralPartialEq for DescribeStandardsResponse
Auto Trait Implementations§
impl Freeze for DescribeStandardsResponse
impl RefUnwindSafe for DescribeStandardsResponse
impl Send for DescribeStandardsResponse
impl Sync for DescribeStandardsResponse
impl Unpin for DescribeStandardsResponse
impl UnwindSafe for DescribeStandardsResponse
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