pub struct HostDhcpService {
pub key: String,
pub spec: HostDhcpServiceSpec,
}Expand description
A dynamic host control protocol (DHCP) service instance serves IP addresses to a single virtual network subnet.
The instances may be handled collectively by a single server. This decision can be made during implementation.
§How to access
HostSystem::config.network?.dhcp?[*]HostNetworkSystem::network_info.dhcp?[*]
Fields§
§key: StringThe instance ID of the DHCP service.
spec: HostDhcpServiceSpecConfigurable properties for the DHCP service.
Trait Implementations§
Source§impl Debug for HostDhcpService
impl Debug for HostDhcpService
Source§impl Deserialize for HostDhcpService
impl Deserialize for HostDhcpService
Source§impl VimObjectTrait for HostDhcpService
impl VimObjectTrait for HostDhcpService
fn as_vim_object_ref<'a>(&'a self) -> &'a dyn VimObjectTrait
fn data_type(&self) -> StructType
impl DataObjectTrait for HostDhcpService
Auto Trait Implementations§
impl Freeze for HostDhcpService
impl RefUnwindSafe for HostDhcpService
impl Send for HostDhcpService
impl Sync for HostDhcpService
impl Unpin for HostDhcpService
impl UnsafeUnpin for HostDhcpService
impl UnwindSafe for HostDhcpService
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