pub struct ListSecurityProfilesResponse {
pub next_token: Option<String>,
pub security_profile_identifiers: Option<Vec<SecurityProfileIdentifier>>,
}Fields§
§next_token: Option<String>A token that can be used to retrieve the next set of results, or null if there are no additional results.
security_profile_identifiers: Option<Vec<SecurityProfileIdentifier>>A list of security profile identifiers (names and ARNs).
Trait Implementations§
Source§impl Clone for ListSecurityProfilesResponse
impl Clone for ListSecurityProfilesResponse
Source§fn clone(&self) -> ListSecurityProfilesResponse
fn clone(&self) -> ListSecurityProfilesResponse
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 ListSecurityProfilesResponse
impl Debug for ListSecurityProfilesResponse
Source§impl Default for ListSecurityProfilesResponse
impl Default for ListSecurityProfilesResponse
Source§fn default() -> ListSecurityProfilesResponse
fn default() -> ListSecurityProfilesResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ListSecurityProfilesResponse
impl<'de> Deserialize<'de> for ListSecurityProfilesResponse
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
Source§impl PartialEq for ListSecurityProfilesResponse
impl PartialEq for ListSecurityProfilesResponse
Source§fn eq(&self, other: &ListSecurityProfilesResponse) -> bool
fn eq(&self, other: &ListSecurityProfilesResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ListSecurityProfilesResponse
Auto Trait Implementations§
impl Freeze for ListSecurityProfilesResponse
impl RefUnwindSafe for ListSecurityProfilesResponse
impl Send for ListSecurityProfilesResponse
impl Sync for ListSecurityProfilesResponse
impl Unpin for ListSecurityProfilesResponse
impl UnwindSafe for ListSecurityProfilesResponse
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