Struct aws_sdk_drs::types::NetworkInterface
source · #[non_exhaustive]pub struct NetworkInterface {
pub mac_address: Option<String>,
pub ips: Option<Vec<String>>,
pub is_primary: Option<bool>,
}Expand description
Network interface.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.mac_address: Option<String>The MAC address of the network interface.
ips: Option<Vec<String>>Network interface IPs.
is_primary: Option<bool>Whether this is the primary network interface.
Implementations§
source§impl NetworkInterface
impl NetworkInterface
sourcepub fn mac_address(&self) -> Option<&str>
pub fn mac_address(&self) -> Option<&str>
The MAC address of the network interface.
sourcepub fn ips(&self) -> &[String]
pub fn ips(&self) -> &[String]
Network interface IPs.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .ips.is_none().
sourcepub fn is_primary(&self) -> Option<bool>
pub fn is_primary(&self) -> Option<bool>
Whether this is the primary network interface.
source§impl NetworkInterface
impl NetworkInterface
sourcepub fn builder() -> NetworkInterfaceBuilder
pub fn builder() -> NetworkInterfaceBuilder
Creates a new builder-style object to manufacture NetworkInterface.
Trait Implementations§
source§impl Clone for NetworkInterface
impl Clone for NetworkInterface
source§fn clone(&self) -> NetworkInterface
fn clone(&self) -> NetworkInterface
Returns a copy 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 NetworkInterface
impl Debug for NetworkInterface
source§impl PartialEq for NetworkInterface
impl PartialEq for NetworkInterface
source§fn eq(&self, other: &NetworkInterface) -> bool
fn eq(&self, other: &NetworkInterface) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for NetworkInterface
Auto Trait Implementations§
impl RefUnwindSafe for NetworkInterface
impl Send for NetworkInterface
impl Sync for NetworkInterface
impl Unpin for NetworkInterface
impl UnwindSafe for NetworkInterface
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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Creates a shared type from an unshared type.