#[non_exhaustive]#[repr(i32)]pub enum _ALPC_PORT_INFORMATION_CLASS {
Show 13 variants
AlpcBasicInformation = 0,
AlpcPortInformation = 1,
AlpcAssociateCompletionPortInformation = 2,
AlpcConnectedSIDInformation = 3,
AlpcServerInformation = 4,
AlpcMessageZoneInformation = 5,
AlpcRegisterCompletionListInformation = 6,
AlpcUnregisterCompletionListInformation = 7,
AlpcAdjustCompletionListConcurrencyCountInformation = 8,
AlpcRegisterCallbackInformation = 9,
AlpcCompletionListRundownInformation = 10,
AlpcWaitForPortReferences = 11,
AlpcServerSessionInformation = 12,
}Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
AlpcBasicInformation = 0
AlpcPortInformation = 1
AlpcAssociateCompletionPortInformation = 2
AlpcConnectedSIDInformation = 3
AlpcServerInformation = 4
AlpcMessageZoneInformation = 5
AlpcRegisterCompletionListInformation = 6
AlpcUnregisterCompletionListInformation = 7
AlpcAdjustCompletionListConcurrencyCountInformation = 8
AlpcRegisterCallbackInformation = 9
AlpcCompletionListRundownInformation = 10
AlpcWaitForPortReferences = 11
AlpcServerSessionInformation = 12
Trait Implementations§
Source§impl Clone for _ALPC_PORT_INFORMATION_CLASS
impl Clone for _ALPC_PORT_INFORMATION_CLASS
Source§fn clone(&self) -> _ALPC_PORT_INFORMATION_CLASS
fn clone(&self) -> _ALPC_PORT_INFORMATION_CLASS
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for _ALPC_PORT_INFORMATION_CLASS
impl Debug for _ALPC_PORT_INFORMATION_CLASS
Source§impl Hash for _ALPC_PORT_INFORMATION_CLASS
impl Hash for _ALPC_PORT_INFORMATION_CLASS
Source§impl PartialEq for _ALPC_PORT_INFORMATION_CLASS
impl PartialEq for _ALPC_PORT_INFORMATION_CLASS
Source§fn eq(&self, other: &_ALPC_PORT_INFORMATION_CLASS) -> bool
fn eq(&self, other: &_ALPC_PORT_INFORMATION_CLASS) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for _ALPC_PORT_INFORMATION_CLASS
impl Eq for _ALPC_PORT_INFORMATION_CLASS
impl StructuralPartialEq for _ALPC_PORT_INFORMATION_CLASS
Auto Trait Implementations§
impl Freeze for _ALPC_PORT_INFORMATION_CLASS
impl RefUnwindSafe for _ALPC_PORT_INFORMATION_CLASS
impl Send for _ALPC_PORT_INFORMATION_CLASS
impl Sync for _ALPC_PORT_INFORMATION_CLASS
impl Unpin for _ALPC_PORT_INFORMATION_CLASS
impl UnwindSafe for _ALPC_PORT_INFORMATION_CLASS
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