Home
last modified time | relevance | path

Searched refs:AsyncExecutor (Results 1 – 2 of 2) sorted by relevance

/external/rust/crates/criterion/src/
Dasync_executor.rs20 pub trait AsyncExecutor { trait
29 impl AsyncExecutor for FuturesExecutor {
39 impl AsyncExecutor for SmolExecutor {
46 impl AsyncExecutor for tokio::runtime::Runtime {
52 impl AsyncExecutor for &tokio::runtime::Runtime { impl
62 impl AsyncExecutor for AsyncStdExecutor {
Dbencher.rs13 use crate::async_executor::AsyncExecutor;
391 pub fn to_async<'b, A: AsyncExecutor>(&'b mut self, runner: A) -> AsyncBencher<'a, 'b, A, M> { in to_async()
398 pub struct AsyncBencher<'a, 'b, A: AsyncExecutor, M: Measurement = WallTime> {
403 impl<'a, 'b, A: AsyncExecutor, M: Measurement> AsyncBencher<'a, 'b, A, M> {