pub struct DescribeStaleSecurityGroupsResult {
pub next_token: Option<String>,
pub stale_security_group_set: Option<Vec<StaleSecurityGroup>>,
}Fields§
§next_token: Option<String>The token to use when requesting the next set of items. If there are no additional items to return, the string is empty.
stale_security_group_set: Option<Vec<StaleSecurityGroup>>Information about the stale security groups.
Trait Implementations§
Source§impl Clone for DescribeStaleSecurityGroupsResult
impl Clone for DescribeStaleSecurityGroupsResult
Source§fn clone(&self) -> DescribeStaleSecurityGroupsResult
fn clone(&self) -> DescribeStaleSecurityGroupsResult
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 Default for DescribeStaleSecurityGroupsResult
impl Default for DescribeStaleSecurityGroupsResult
Source§fn default() -> DescribeStaleSecurityGroupsResult
fn default() -> DescribeStaleSecurityGroupsResult
Returns the “default value” for a type. Read more
Source§impl PartialEq for DescribeStaleSecurityGroupsResult
impl PartialEq for DescribeStaleSecurityGroupsResult
Source§fn eq(&self, other: &DescribeStaleSecurityGroupsResult) -> bool
fn eq(&self, other: &DescribeStaleSecurityGroupsResult) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for DescribeStaleSecurityGroupsResult
Auto Trait Implementations§
impl Freeze for DescribeStaleSecurityGroupsResult
impl RefUnwindSafe for DescribeStaleSecurityGroupsResult
impl Send for DescribeStaleSecurityGroupsResult
impl Sync for DescribeStaleSecurityGroupsResult
impl Unpin for DescribeStaleSecurityGroupsResult
impl UnwindSafe for DescribeStaleSecurityGroupsResult
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