pub trait Recents: Send + Sync {
// Required method
fn recent<'life0, 'life1, 'async_trait>(
&'life0 self,
limit: usize,
opts: &'life1 SearchOptions,
) -> Pin<Box<dyn Future<Output = Result<Vec<SearchResult>>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait;
}