Trait IntoAsyncIterator

trait IntoAsyncIterator

Converts something into an async iterator

Associated Types

type Item

The type of the item yielded by the iterator

type IntoAsyncIter: TraitBound { trait_: Path { path: "AsyncIterator", id: Id(24097), args: Some(AngleBracketed { args: [], constraints: [AssocItemConstraint { name: "Item", args: None, binding: Equality(Type(QualifiedPath { name: "Item", args: None, self_type: Generic("Self"), trait_: Some(Path { path: "", id: Id(24117), args: None }) })) }] }) }, generic_params: [], modifier: None }

The type of the resulting iterator

Required Methods

fn into_async_iter(self: Self) -> <Self as >::IntoAsyncIter

Converts self into an async iterator

Implementors