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