#[repr(C)]pub struct uv_async_s {
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: uv__queue,
pub u: uv_async_s__bindgen_ty_1,
pub next_closing: *mut uv_handle_t,
pub flags: c_uint,
pub async_cb: uv_async_cb,
pub queue: uv__queue,
pub pending: c_int,
}Fields§
§data: *mut c_void§loop_: *mut uv_loop_t§type_: uv_handle_type§close_cb: uv_close_cb§handle_queue: uv__queue§u: uv_async_s__bindgen_ty_1§next_closing: *mut uv_handle_t§flags: c_uint§async_cb: uv_async_cb§queue: uv__queue§pending: c_intTrait Implementations§
Source§impl Clone for uv_async_s
impl Clone for uv_async_s
Source§fn clone(&self) -> uv_async_s
fn clone(&self) -> uv_async_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 moreimpl Copy for uv_async_s
Auto Trait Implementations§
impl Freeze for uv_async_s
impl RefUnwindSafe for uv_async_s
impl !Send for uv_async_s
impl !Sync for uv_async_s
impl Unpin for uv_async_s
impl UnwindSafe for uv_async_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