pub(super) trait Select: Send + Sync {
// Required method
fn candidates<'life0, 'life1, 'async_trait>(
&'life0 self,
opts: &'life1 Opts,
) -> Pin<Box<dyn Future<Output = Candidates> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait;
}Expand description
Candidate enumeration seam. The production impl derives the server pool from room state; tests substitute a fixed list.
Required Methods§
fn candidates<'life0, 'life1, 'async_trait>(
&'life0 self,
opts: &'life1 Opts,
) -> Pin<Box<dyn Future<Output = Candidates> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".