Struct IterMut

pub struct IterMut<'a, Fut: Unpin>(/* private field */);

Mutable iterator over all futures in the unordered set.

Trait Implementations

impl<'a, Fut: Debug + Unpin> Debug for IterMut<'a, Fut>

fn fmt(&self, f: &mut Formatter<'_>) -> Result

impl<'a, Fut: Unpin> Iterator for IterMut<'a, Fut>

type Item = &'a mut Fut;
fn next(&mut self) -> Option<Self::Item>
fn size_hint(&self) -> (usize, Option<usize>)

impl<Fut: Unpin> ExactSizeIterator for IterMut<'_, Fut>

Auto Trait Implementations

impl<'a, Fut> !RefUnwindSafe for IterMut<'a, Fut>

impl<'a, Fut> !UnwindSafe for IterMut<'a, Fut>

impl<'a, Fut> Freeze for IterMut<'a, Fut> where IterPinMut<'a, Fut>: Freeze,

impl<'a, Fut> Send for IterMut<'a, Fut> where IterPinMut<'a, Fut>: Send,

impl<'a, Fut> Sync for IterMut<'a, Fut> where IterPinMut<'a, Fut>: Sync,

impl<'a, Fut> Unpin for IterMut<'a, Fut> where IterPinMut<'a, Fut>: Unpin,

impl<'a, Fut> UnsafeUnpin for IterMut<'a, Fut> where IterPinMut<'a, Fut>: UnsafeUnpin,

Blanket Implementations

impl<I> IntoIterator for IterMut<'a, Fut> where I: Iterator,

type Item = <I as Iterator>::Item;
type IntoIter = I;
fn into_iter(self) -> I

impl<T> Any for IterMut<'a, Fut> where T: 'static + ?Sized,

fn type_id(&self) -> TypeId

impl<T> Borrow<T> for IterMut<'a, Fut> where T: ?Sized,

fn borrow(&self) -> &T

impl<T> BorrowMut<T> for IterMut<'a, Fut> where T: ?Sized,

fn borrow_mut(&mut self) -> &mut T

impl<T> From<T> for IterMut<'a, Fut>

fn from(t: T) -> T

Returns the argument unchanged.

impl<T, U> Into<U> for IterMut<'a, Fut> where U: From<T>,

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of [From]<T> for U chooses to do.

impl<T, U> TryFrom<U> for IterMut<'a, Fut> where U: Into<T>,

type Error = never;
fn try_from(value: U) -> Result<T, never>

impl<T, U> TryInto<U> for IterMut<'a, Fut> where U: TryFrom<T>,

type Error = <U as TryFrom<T>>::Error;
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>