1 2 3 4 5 6 7 8 9
//! Configurable request structs returned by the client. mod search_bots; pub use search_bots::SearchBots; use std::{future::Future, pin::Pin}; type Pending<'a, T> = Pin<Box<dyn Future<Output = T> + Send + 'a>>;