#[repr(C)]pub struct k_work_poll {
    pub work: k_work,
    pub workq: *mut k_work_q,
    pub poller: z_poller,
    pub events: *mut k_poll_event,
    pub num_events: c_int,
    pub real_handler: k_work_handler_t,
    pub timeout: _timeout,
    pub poll_result: c_int,
}Expand description
@cond INTERNAL_HIDDEN
Fields§
§work: k_work§workq: *mut k_work_q§poller: z_poller§events: *mut k_poll_event§num_events: c_int§real_handler: k_work_handler_t§timeout: _timeout§poll_result: c_intTrait Implementations§
Auto Trait Implementations§
impl Freeze for k_work_poll
impl RefUnwindSafe for k_work_poll
impl !Send for k_work_poll
impl !Sync for k_work_poll
impl Unpin for k_work_poll
impl UnwindSafe for k_work_poll
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