pub fn box_fut_plain<'a, R>(
    result: R
) -> Pin<Box<dyn Future<Output = R> + Send + 'a>>
where R: Send + 'a,
Expand description

Helper function for the common case of returning this boxed future type.