#[repr(C)]pub struct k_work_q {
pub thread: k_thread,
pub pending: _slist,
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
§pending: _slist
§notifyq: _wait_q_t
§drainq: _wait_q_t
§flags: u32
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