#[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_t
PRIVATE - DO NOT TOUCH
signaled: c_uint
1 if the event has been signaled, 0 otherwise. Stays set to 1 until user resets it to 0.
result: c_int
custom result value passed to k_poll_signal_raise() if needed
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