#[repr(C)]pub struct event {
pub event_id: event_types,
pub priority: priority,
pub owner: *mut c_char,
pub subclass_name: *mut c_char,
pub headers: *mut event_header,
pub last_header: *mut event_header,
pub body: *mut c_char,
pub bind_user_data: *mut c_void,
pub event_user_data: *mut c_void,
pub key: c_ulong,
pub next: *mut event,
pub flags: c_int,
}Fields§
§event_id: event_types§priority: priority§owner: *mut c_char§subclass_name: *mut c_char§headers: *mut event_header§last_header: *mut event_header§body: *mut c_char§bind_user_data: *mut c_void§event_user_data: *mut c_void§key: c_ulong§next: *mut event§flags: c_intTrait Implementations§
impl Copy for event
Auto Trait Implementations§
impl Freeze for event
impl RefUnwindSafe for event
impl !Send for event
impl !Sync for event
impl Unpin for event
impl UnwindSafe for 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