Struct IntoIter
pub struct IntoIter<St: Unpin>(/* private field */);
Owned iterator over all streams in the unordered set.
Trait Implementations
impl<St: Debug + Unpin> Debug for IntoIter<St>
fn fmt(&self, f: &mut Formatter<'_>) -> Result
impl<St: Stream + Unpin> ExactSizeIterator for IntoIter<St>
impl<St: Stream + Unpin> Iterator for IntoIter<St>
type Item = St;fn next(&mut self) -> Option<Self::Item>fn size_hint(&self) -> (usize, Option<usize>)
Auto Trait Implementations
impl<St> !Freeze for IntoIter<St>
impl<St> !RefUnwindSafe for IntoIter<St>
impl<St> !UnwindSafe for IntoIter<St>
impl<St> Send for IntoIter<St>
where
IntoIter<StreamFuture<St>>: Send,
impl<St> Sync for IntoIter<St>
where
IntoIter<StreamFuture<St>>: Sync,
impl<St> Unpin for IntoIter<St>
where
IntoIter<StreamFuture<St>>: Unpin,
impl<St> UnsafeUnpin for IntoIter<St>
where
IntoIter<StreamFuture<St>>: UnsafeUnpin,
Blanket Implementations
impl<I> IntoIterator for IntoIter<St>
where
I: Iterator,
type Item = <I as Iterator>::Item;type IntoIter = I;fn into_iter(self) -> I
impl<T> Any for IntoIter<St>
where
T: 'static + ?Sized,
fn type_id(&self) -> TypeId
impl<T> Borrow<T> for IntoIter<St>
where
T: ?Sized,
fn borrow(&self) -> &T
impl<T> BorrowMut<T> for IntoIter<St>
where
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
impl<T> From<T> for IntoIter<St>
fn from(t: T) -> TReturns the argument unchanged.
impl<T, U> Into<U> for IntoIter<St>
where
U: From<T>,
fn into(self) -> UCalls
U::from(self).That is, this conversion is whatever the implementation of
[From]<T> for Uchooses to do.
impl<T, U> TryFrom<U> for IntoIter<St>
where
U: Into<T>,
type Error = never;fn try_from(value: U) -> Result<T, never>
impl<T, U> TryInto<U> for IntoIter<St>
where
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error;fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>