#[repr(C)]pub struct k_poll_signal {
    pub poll_events: sys_dlist_t,
    pub signaled: c_uint,
    pub result: c_int,
}Fields§
§poll_events: sys_dlist_tPRIVATE - DO NOT TOUCH
signaled: c_uint1 if the event has been signaled, 0 otherwise. Stays set to 1 until user resets it to 0.
result: c_intcustom result value passed to k_poll_signal_raise() if needed
Trait Implementations§
Auto Trait Implementations§
impl Freeze for k_poll_signal
impl RefUnwindSafe for k_poll_signal
impl !Send for k_poll_signal
impl !Sync for k_poll_signal
impl Unpin for k_poll_signal
impl UnwindSafe for k_poll_signal
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