pub enum DhcpClient {
ReadsOption121,
IgnoresOption121,
}Expand description
Whether a guest’s DHCP client reads option 121.
This is the whole bug, as a two-variant enum — the same shape as
crate::guest_clock::RtcInterpretation, and for the same reason: the
provider offers the right thing and the GUEST does or does not take it.
Variants§
ReadsOption121
Reads option 121 and installs the routes. The fixed appliance, and every ordinary distro.
IgnoresOption121
Takes the address, ignores the routes, and has no way off its own /22.
The appliance before gunnar 35ac0c3.
Trait Implementations§
Source§impl Clone for DhcpClient
impl Clone for DhcpClient
impl Copy for DhcpClient
Source§impl Debug for DhcpClient
impl Debug for DhcpClient
impl Eq for DhcpClient
Source§impl PartialEq for DhcpClient
impl PartialEq for DhcpClient
impl StructuralPartialEq for DhcpClient
Auto Trait Implementations§
impl Freeze for DhcpClient
impl RefUnwindSafe for DhcpClient
impl Send for DhcpClient
impl Sync for DhcpClient
impl Unpin for DhcpClient
impl UnsafeUnpin for DhcpClient
impl UnwindSafe for DhcpClient
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