#[repr(C)]pub struct WOLF_EVENT {
pub next: *mut WOLF_EVENT,
pub prev: *mut WOLF_EVENT,
pub context: *mut c_void,
pub dev: WOLF_EVENT__bindgen_ty_1,
pub threadId: pthread_t,
pub ret: c_int,
pub flags: c_uint,
pub type_: WOLF_EVENT_TYPE,
pub state: WOLF_EVENT_STATE,
}Fields§
§next: *mut WOLF_EVENT§prev: *mut WOLF_EVENT§context: *mut c_void§dev: WOLF_EVENT__bindgen_ty_1§threadId: pthread_t§ret: c_int§flags: c_uint§type_: WOLF_EVENT_TYPE§state: WOLF_EVENT_STATETrait Implementations§
Source§impl Clone for WOLF_EVENT
impl Clone for WOLF_EVENT
Source§fn clone(&self) -> WOLF_EVENT
fn clone(&self) -> WOLF_EVENT
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 WOLF_EVENT
Auto Trait Implementations§
impl Freeze for WOLF_EVENT
impl RefUnwindSafe for WOLF_EVENT
impl !Send for WOLF_EVENT
impl !Sync for WOLF_EVENT
impl Unpin for WOLF_EVENT
impl UnwindSafe for WOLF_EVENT
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