#[repr(C)]pub struct k_poll_signal {
pub poll_events: _dnode,
pub signaled: u32,
pub result: i32,
}
Fields§
§poll_events: _dnode
PRIVATE - DO NOT TOUCH
signaled: u32
1 if the event has been signaled, 0 otherwise. Stays set to 1 until user resets it to 0.
result: i32
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