#[repr(C)]pub struct Events {
pub num_events: i32,
pub _reserved: isize,
pub events: *mut *mut Event,
}
Expand description
A struct which contains events.
Fields§
§num_events: i32
Number of events.
_reserved: isize
Reserved for future use. Should be 0.
events: *mut *mut Event
Array of pointers to api::Event
objects.
Auto Trait Implementations§
impl Freeze for Events
impl RefUnwindSafe for Events
impl !Send for Events
impl !Sync for Events
impl Unpin for Events
impl UnwindSafe for Events
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