#[repr(C)]pub struct k_work_q {
    pub thread: k_thread,
    pub thread_id: k_tid_t,
    pub pending: sys_slist_t,
    pub notifyq: _wait_q_t,
    pub drainq: _wait_q_t,
    pub flags: u32,
}Expand description
@brief A structure used to hold work until it can be processed.
Fields§
§thread: k_thread§thread_id: k_tid_t§pending: sys_slist_t§notifyq: _wait_q_t§drainq: _wait_q_t§flags: u32Trait Implementations§
Auto Trait Implementations§
impl Freeze for k_work_q
impl RefUnwindSafe for k_work_q
impl !Send for k_work_q
impl !Sync for k_work_q
impl Unpin for k_work_q
impl UnwindSafe for k_work_q
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