pub struct PolledCompletions<'a> { /* private fields */ }Expand description
An iterator over completions retrieved from a poll operation.
This struct is returned by CompletionQueue::poll. It borrows the underlying
PollSlot buffer and yields WorkCompletion objects.
Implementations§
Trait Implementations§
Source§impl<'a> IntoIterator for PolledCompletions<'a>
impl<'a> IntoIterator for PolledCompletions<'a>
Auto Trait Implementations§
impl<'a> Freeze for PolledCompletions<'a>
impl<'a> RefUnwindSafe for PolledCompletions<'a>
impl<'a> Send for PolledCompletions<'a>
impl<'a> Sync for PolledCompletions<'a>
impl<'a> Unpin for PolledCompletions<'a>
impl<'a> UnsafeUnpin for PolledCompletions<'a>
impl<'a> !UnwindSafe for PolledCompletions<'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