Struct riot_sys::event_queue_t
source · #[repr(C)]pub struct event_queue_t {
pub event_list: clist_node_t,
pub waiter: *mut thread_t,
}
Expand description
@brief event queue structure
Fields§
§event_list: clist_node_t
< list of queued events
waiter: *mut thread_t
< thread owning event queue
Trait Implementations§
source§impl Clone for event_queue_t
impl Clone for event_queue_t
source§fn clone(&self) -> event_queue_t
fn clone(&self) -> event_queue_t
Returns a copy 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 moresource§impl Debug for event_queue_t
impl Debug for event_queue_t
source§impl Default for event_queue_t
impl Default for event_queue_t
impl Copy for event_queue_t
Auto Trait Implementations§
impl RefUnwindSafe for event_queue_t
impl !Send for event_queue_t
impl !Sync for event_queue_t
impl Unpin for event_queue_t
impl UnwindSafe for event_queue_t
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