pub trait AsyncForEach<T> {
    // Required method
    fn async_for_each<F: Fn(MutexGuard<'_, T>) + Send + 'static>(&self, f: F);
}

Required Methods§

source

fn async_for_each<F: Fn(MutexGuard<'_, T>) + Send + 'static>(&self, f: F)

Implementations on Foreign Types§

source§

impl AsyncForEach<FontContext> for Arc<FontContexts>

source§

fn async_for_each<F: Fn(MutexGuard<'_, FontContext>) + Send + 'static>( &self, f: F )

Implementors§