Struct windows_sys::Win32::Networking::Clustering::CREATE_CLUSTER_CONFIG
#[repr(C)]pub struct CREATE_CLUSTER_CONFIG {
pub dwVersion: u32,
pub lpszClusterName: PCWSTR,
pub cNodes: u32,
pub ppszNodeNames: *const PCWSTR,
pub cIpEntries: u32,
pub pIpEntries: *mut CLUSTER_IP_ENTRY,
pub fEmptyCluster: BOOLEAN,
pub managementPointType: CLUSTER_MGMT_POINT_TYPE,
pub managementPointResType: CLUSTER_MGMT_POINT_RESTYPE,
}
Expand description
Required features: "Win32_Foundation"
Fields§
§dwVersion: u32
§lpszClusterName: PCWSTR
§cNodes: u32
§ppszNodeNames: *const PCWSTR
§cIpEntries: u32
§pIpEntries: *mut CLUSTER_IP_ENTRY
§fEmptyCluster: BOOLEAN
§managementPointType: CLUSTER_MGMT_POINT_TYPE
§managementPointResType: CLUSTER_MGMT_POINT_RESTYPE
Trait Implementations§
§impl Clone for CREATE_CLUSTER_CONFIG
impl Clone for CREATE_CLUSTER_CONFIG
impl Copy for CREATE_CLUSTER_CONFIG
Auto Trait Implementations§
impl RefUnwindSafe for CREATE_CLUSTER_CONFIG
impl !Send for CREATE_CLUSTER_CONFIG
impl !Sync for CREATE_CLUSTER_CONFIG
impl Unpin for CREATE_CLUSTER_CONFIG
impl UnwindSafe for CREATE_CLUSTER_CONFIG
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