Searched refs:AsyncExecutor (Results 1 – 2 of 2) sorted by relevance
/external/rust/crates/criterion/src/ |
D | async_executor.rs | 20 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 {
|
D | bencher.rs | 13 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> {
|