pub struct DhcpOptions {
pub dhcp_options_id: String,
pub configurations: Vec<DhcpConfig>,
}Expand description
A DHCP options set.
Fields§
§dhcp_options_id: String§configurations: Vec<DhcpConfig>Trait Implementations§
Source§impl Clone for DhcpOptions
impl Clone for DhcpOptions
Source§fn clone(&self) -> DhcpOptions
fn clone(&self) -> DhcpOptions
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 DhcpOptions
impl Debug for DhcpOptions
Source§impl<'de> Deserialize<'de> for DhcpOptions
impl<'de> Deserialize<'de> for DhcpOptions
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
Auto Trait Implementations§
impl Freeze for DhcpOptions
impl RefUnwindSafe for DhcpOptions
impl Send for DhcpOptions
impl Sync for DhcpOptions
impl Unpin for DhcpOptions
impl UnsafeUnpin for DhcpOptions
impl UnwindSafe for DhcpOptions
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