pub struct DHCPv6C {
pub operating_mode: Option<DHCPv6OMode>,
pub use_dns_servers: Option<bool>,
pub use_domain_name: Option<bool>,
pub use_ntp_servers: Option<bool>,
pub use_rapid_commit: Option<bool>,
}
Expand description
DHCPv6 configuration for this interface.
Fields§
§operating_mode: Option<DHCPv6OMode>
§use_dns_servers: Option<bool>
An indication of whether the interface uses DHCP v6-supplied DNS servers.
use_domain_name: Option<bool>
An indication of whether this interface uses a DHCP v6-supplied domain name.
use_ntp_servers: Option<bool>
An indication of whether the interface uses DHCP v6-supplied NTP servers.
use_rapid_commit: Option<bool>
An indication of whether the interface uses DHCP v6 rapid commit mode for stateful mode address assignments. Do not enable this option in networks where more than one DHCP v6 server is configured to provide address assignments.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for DHCPv6C
impl<'de> Deserialize<'de> for DHCPv6C
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
Source§impl Metadata<'static> for DHCPv6C
impl Metadata<'static> for DHCPv6C
Source§const JSON_SCHEMA: &'static str = "EthernetInterface.v1_10_0.json"
const JSON_SCHEMA: &'static str = "EthernetInterface.v1_10_0.json"
Name of the json-schema file that describes the entity that implements this trait. Should
be only the file name, so that it can be resolved relative to the URL of the redfish
service, or the public Redfish schema index.
Auto Trait Implementations§
impl Freeze for DHCPv6C
impl RefUnwindSafe for DHCPv6C
impl Send for DHCPv6C
impl Sync for DHCPv6C
impl Unpin for DHCPv6C
impl UnwindSafe for DHCPv6C
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