pub struct DHCP {
pub dhcp_interface_mtu_bytes: Option<i64>,
pub dhcp_relay_enabled: Option<bool>,
pub dhcp_server: Option<Vec<String>>,
}Expand description
DHCP related properties for an Ethernet fabric.
Fields§
§dhcp_interface_mtu_bytes: Option<i64>Dynamic Host Configuration Protocol (DHCP) interface Maximum Transmission Unit (MTU).
dhcp_relay_enabled: Option<bool>Dynamic Host Configuration Protocol (DHCP) relay status.
dhcp_server: Option<Vec<String>>The Dynamic Host Configuration Protocol (DHCP) IPv4 addresses for this Ethernet fabric.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for DHCP
impl<'de> Deserialize<'de> for DHCP
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 DHCP
impl Metadata<'static> for DHCP
Source§const JSON_SCHEMA: &'static str = "AddressPool.v1_2_2.json"
const JSON_SCHEMA: &'static str = "AddressPool.v1_2_2.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 DHCP
impl RefUnwindSafe for DHCP
impl Send for DHCP
impl Sync for DHCP
impl Unpin for DHCP
impl UnsafeUnpin for DHCP
impl UnwindSafe for DHCP
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