pub type ScanFuture<'a> = Pin<Box<dyn Future<Output = Result<String, ScanTriggerError>> + Send + 'a>>;Expand description
Future returned by ScanTrigger::trigger. Boxed so the trait can be
object-safe.
Aliased Typeยง
pub struct ScanFuture<'a> { /* private fields */ }