pub struct DescribeNetworkInterfacesResult {
pub network_interfaces: Option<Vec<NetworkInterface>>,
pub next_token: Option<String>,
}Expand description
Contains the output of DescribeNetworkInterfaces.
Fields§
§network_interfaces: Option<Vec<NetworkInterface>>Information about one or more network interfaces.
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.
Trait Implementations§
Source§impl Clone for DescribeNetworkInterfacesResult
impl Clone for DescribeNetworkInterfacesResult
Source§fn clone(&self) -> DescribeNetworkInterfacesResult
fn clone(&self) -> DescribeNetworkInterfacesResult
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 DescribeNetworkInterfacesResult
impl Default for DescribeNetworkInterfacesResult
Source§fn default() -> DescribeNetworkInterfacesResult
fn default() -> DescribeNetworkInterfacesResult
Returns the “default value” for a type. Read more
Source§impl PartialEq for DescribeNetworkInterfacesResult
impl PartialEq for DescribeNetworkInterfacesResult
Source§fn eq(&self, other: &DescribeNetworkInterfacesResult) -> bool
fn eq(&self, other: &DescribeNetworkInterfacesResult) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for DescribeNetworkInterfacesResult
Auto Trait Implementations§
impl Freeze for DescribeNetworkInterfacesResult
impl RefUnwindSafe for DescribeNetworkInterfacesResult
impl Send for DescribeNetworkInterfacesResult
impl Sync for DescribeNetworkInterfacesResult
impl Unpin for DescribeNetworkInterfacesResult
impl UnwindSafe for DescribeNetworkInterfacesResult
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