Struct windows_sys::Win32::NetworkManagement::Dhcp::DHCP_POLICY
#[repr(C)]pub struct DHCP_POLICY {
pub PolicyName: PWSTR,
pub IsGlobalPolicy: BOOL,
pub Subnet: u32,
pub ProcessingOrder: u32,
pub Conditions: *mut DHCP_POL_COND_ARRAY,
pub Expressions: *mut DHCP_POL_EXPR_ARRAY,
pub Ranges: *mut DHCP_IP_RANGE_ARRAY,
pub Description: PWSTR,
pub Enabled: BOOL,
}
Expand description
Required features: "Win32_Foundation"
Fields§
§PolicyName: PWSTR
§IsGlobalPolicy: BOOL
§Subnet: u32
§ProcessingOrder: u32
§Conditions: *mut DHCP_POL_COND_ARRAY
§Expressions: *mut DHCP_POL_EXPR_ARRAY
§Ranges: *mut DHCP_IP_RANGE_ARRAY
§Description: PWSTR
§Enabled: BOOL
Trait Implementations§
§impl Clone for DHCP_POLICY
impl Clone for DHCP_POLICY
impl Copy for DHCP_POLICY
Auto Trait Implementations§
impl RefUnwindSafe for DHCP_POLICY
impl !Send for DHCP_POLICY
impl !Sync for DHCP_POLICY
impl Unpin for DHCP_POLICY
impl UnwindSafe for DHCP_POLICY
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