#[repr(i32)]pub enum _system_handle_t {
Show 14 variants
SYSTEM_HANDLE_FILE = 0,
SYSTEM_HANDLE_SEMAPHORE = 1,
SYSTEM_HANDLE_EVENT = 2,
SYSTEM_HANDLE_MUTEX = 3,
SYSTEM_HANDLE_PROCESS = 4,
SYSTEM_HANDLE_TOKEN = 5,
SYSTEM_HANDLE_SECTION = 6,
SYSTEM_HANDLE_REG_KEY = 7,
SYSTEM_HANDLE_THREAD = 8,
SYSTEM_HANDLE_COMPOSITION_OBJECT = 9,
SYSTEM_HANDLE_SOCKET = 10,
SYSTEM_HANDLE_JOB = 11,
SYSTEM_HANDLE_PIPE = 12,
SYSTEM_HANDLE_INVALID = 255,
}Variants§
SYSTEM_HANDLE_FILE = 0
SYSTEM_HANDLE_SEMAPHORE = 1
SYSTEM_HANDLE_EVENT = 2
SYSTEM_HANDLE_MUTEX = 3
SYSTEM_HANDLE_PROCESS = 4
SYSTEM_HANDLE_TOKEN = 5
SYSTEM_HANDLE_SECTION = 6
SYSTEM_HANDLE_REG_KEY = 7
SYSTEM_HANDLE_THREAD = 8
SYSTEM_HANDLE_COMPOSITION_OBJECT = 9
SYSTEM_HANDLE_SOCKET = 10
SYSTEM_HANDLE_JOB = 11
SYSTEM_HANDLE_PIPE = 12
SYSTEM_HANDLE_INVALID = 255
Implementations§
Source§impl _system_handle_t
impl _system_handle_t
pub const SYSTEM_HANDLE_MAX: _system_handle_t = _system_handle_t::SYSTEM_HANDLE_PIPE
Trait Implementations§
Source§impl Clone for _system_handle_t
impl Clone for _system_handle_t
Source§fn clone(&self) -> _system_handle_t
fn clone(&self) -> _system_handle_t
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 _system_handle_t
impl Debug for _system_handle_t
Source§impl Hash for _system_handle_t
impl Hash for _system_handle_t
Source§impl PartialEq for _system_handle_t
impl PartialEq for _system_handle_t
impl Copy for _system_handle_t
impl Eq for _system_handle_t
impl StructuralPartialEq for _system_handle_t
Auto Trait Implementations§
impl Freeze for _system_handle_t
impl RefUnwindSafe for _system_handle_t
impl Send for _system_handle_t
impl Sync for _system_handle_t
impl Unpin for _system_handle_t
impl UnwindSafe for _system_handle_t
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