#[repr(C)]pub struct wl_event_queue(/* private fields */);Expand description
The libwayland wl_event_display type.
This type morally has the following fields:
events: Vec<..>
where each event is an event that has been read from the socket but which has not yet been dispatched.
Access to events is protected by the wl_display.mutex.
The mutex is dropped before an event is dispatched.
Auto Trait Implementations§
impl Freeze for wl_event_queue
impl RefUnwindSafe for wl_event_queue
impl Send for wl_event_queue
impl Sync for wl_event_queue
impl Unpin for wl_event_queue
impl UnwindSafe for wl_event_queue
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