#[repr(C)]pub struct uv_signal_s {Show 13 fields
pub data: *mut c_void,
pub loop_: *mut uv_loop_t,
pub type_: uv_handle_type,
pub close_cb: uv_close_cb,
pub handle_queue: [*mut c_void; 2],
pub u: uv_signal_s__bindgen_ty_1,
pub next_closing: *mut uv_handle_t,
pub flags: c_uint,
pub signal_cb: uv_signal_cb,
pub signum: c_int,
pub tree_entry: uv_signal_s__bindgen_ty_2,
pub caught_signals: c_uint,
pub dispatched_signals: c_uint,
}Fields§
§data: *mut c_void§loop_: *mut uv_loop_t§type_: uv_handle_type§close_cb: uv_close_cb§handle_queue: [*mut c_void; 2]§u: uv_signal_s__bindgen_ty_1§next_closing: *mut uv_handle_t§flags: c_uint§signal_cb: uv_signal_cb§signum: c_int§tree_entry: uv_signal_s__bindgen_ty_2§caught_signals: c_uint§dispatched_signals: c_uintTrait Implementations§
Source§impl Clone for uv_signal_s
impl Clone for uv_signal_s
Source§fn clone(&self) -> uv_signal_s
fn clone(&self) -> uv_signal_s
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 Default for uv_signal_s
impl Default for uv_signal_s
impl Copy for uv_signal_s
Auto Trait Implementations§
impl Freeze for uv_signal_s
impl RefUnwindSafe for uv_signal_s
impl !Send for uv_signal_s
impl !Sync for uv_signal_s
impl Unpin for uv_signal_s
impl UnwindSafe for uv_signal_s
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