#[repr(C)]pub struct WaitItem<'a> {
pub handle: HandleRef<'a>,
pub waitfor: Signals,
pub pending: Signals,
}
Expand description
A “wait item” containing a handle reference and information about what signals
to wait on, and, on return from object_wait_many
, which are pending.
Fields§
§handle: HandleRef<'a>
The handle to wait on.
waitfor: Signals
A set of signals to wait for.
pending: Signals
The set of signals pending, on return of object_wait_many
.
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for WaitItem<'a>
impl<'a> RefUnwindSafe for WaitItem<'a>
impl<'a> Send for WaitItem<'a>
impl<'a> Sync for WaitItem<'a>
impl<'a> Unpin for WaitItem<'a>
impl<'a> UnwindSafe for WaitItem<'a>
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