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