pub struct StatelessAddressAutoConfiguration {
pub ipv4auto_config_enabled: Option<Option<Boolean>>,
pub ipv6auto_config_enabled: Option<Option<Boolean>>,
}Expand description
Stateless address autoconfiguration (SLAAC) parameters for this interface.
This type shall describe the IPv4 and IPv6 stateless address autoconfiguration (SLAAC) for this interface.
Fields§
§ipv4auto_config_enabled: Option<Option<Boolean>>An indication of whether IPv4 stateless address autoconfiguration (SLAAC) is enabled for this interface.
This property shall indicate whether IPv4 stateless address autoconfiguration (SLAAC) is enabled for this interface.
ipv6auto_config_enabled: Option<Option<Boolean>>An indication of whether IPv6 stateless address autoconfiguration (SLAAC) is enabled for this interface.
This property shall indicate whether IPv6 stateless address autoconfiguration (SLAAC) is enabled for this interface.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for StatelessAddressAutoConfiguration
impl<'de> Deserialize<'de> for StatelessAddressAutoConfiguration
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
impl Send for StatelessAddressAutoConfiguration
SAFETY: All generated data types are Send
impl Sync for StatelessAddressAutoConfiguration
SAFETY: All generated data types are Sync
Auto Trait Implementations§
impl Freeze for StatelessAddressAutoConfiguration
impl RefUnwindSafe for StatelessAddressAutoConfiguration
impl Unpin for StatelessAddressAutoConfiguration
impl UnsafeUnpin for StatelessAddressAutoConfiguration
impl UnwindSafe for StatelessAddressAutoConfiguration
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