#[repr(u32)]pub enum uv_handle_type {
Show 19 variants
UV_UNKNOWN_HANDLE = 0,
UV_ASYNC = 1,
UV_CHECK = 2,
UV_FS_EVENT = 3,
UV_FS_POLL = 4,
UV_HANDLE = 5,
UV_IDLE = 6,
UV_NAMED_PIPE = 7,
UV_POLL = 8,
UV_PREPARE = 9,
UV_PROCESS = 10,
UV_STREAM = 11,
UV_TCP = 12,
UV_TIMER = 13,
UV_TTY = 14,
UV_UDP = 15,
UV_SIGNAL = 16,
UV_FILE = 17,
UV_HANDLE_TYPE_MAX = 18,
}Variants§
UV_UNKNOWN_HANDLE = 0
UV_ASYNC = 1
UV_CHECK = 2
UV_FS_EVENT = 3
UV_FS_POLL = 4
UV_HANDLE = 5
UV_IDLE = 6
UV_NAMED_PIPE = 7
UV_POLL = 8
UV_PREPARE = 9
UV_PROCESS = 10
UV_STREAM = 11
UV_TCP = 12
UV_TIMER = 13
UV_TTY = 14
UV_UDP = 15
UV_SIGNAL = 16
UV_FILE = 17
UV_HANDLE_TYPE_MAX = 18
Trait Implementations§
Source§impl Clone for uv_handle_type
impl Clone for uv_handle_type
Source§fn clone(&self) -> uv_handle_type
fn clone(&self) -> uv_handle_type
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 uv_handle_type
impl Debug for uv_handle_type
Source§impl Hash for uv_handle_type
impl Hash for uv_handle_type
Source§impl PartialEq for uv_handle_type
impl PartialEq for uv_handle_type
impl Copy for uv_handle_type
impl Eq for uv_handle_type
impl StructuralPartialEq for uv_handle_type
Auto Trait Implementations§
impl Freeze for uv_handle_type
impl RefUnwindSafe for uv_handle_type
impl Send for uv_handle_type
impl Sync for uv_handle_type
impl Unpin for uv_handle_type
impl UnwindSafe for uv_handle_type
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