Struct windows_sys::Win32::NetworkManagement::Dhcp::DHCP_POLICY_EX
#[repr(C)]pub struct DHCP_POLICY_EX {
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,
pub Properties: *mut DHCP_PROPERTY_ARRAY,
}
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
§Properties: *mut DHCP_PROPERTY_ARRAY
Trait Implementations§
§impl Clone for DHCP_POLICY_EX
impl Clone for DHCP_POLICY_EX
impl Copy for DHCP_POLICY_EX
Auto Trait Implementations§
impl RefUnwindSafe for DHCP_POLICY_EX
impl !Send for DHCP_POLICY_EX
impl !Sync for DHCP_POLICY_EX
impl Unpin for DHCP_POLICY_EX
impl UnwindSafe for DHCP_POLICY_EX
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