pub struct Flow<In, Out> { /* private fields */ }Implementations§
Source§impl<In: Send + 'static, Out: Send + 'static> Flow<In, Out>
impl<In: Send + 'static, Out: Send + 'static> Flow<In, Out>
Sourcepub fn map_async<F, Fut>(parallelism: usize, f: F) -> Self
pub fn map_async<F, Fut>(parallelism: usize, f: F) -> Self
Asynchronous mapping with ordered bounded parallelism.
Auto Trait Implementations§
impl<In, Out> Freeze for Flow<In, Out>
impl<In, Out> !RefUnwindSafe for Flow<In, Out>
impl<In, Out> Send for Flow<In, Out>
impl<In, Out> !Sync for Flow<In, Out>
impl<In, Out> Unpin for Flow<In, Out>
impl<In, Out> UnsafeUnpin for Flow<In, Out>
impl<In, Out> !UnwindSafe for Flow<In, Out>
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