relay/src/future.rs

4 lines
117 B
Rust
Raw Normal View History

2023-09-09 20:46:22 +00:00
use std::{future::Future, pin::Pin};
pub(crate) type LocalBoxFuture<'a, T> = Pin<Box<dyn Future<Output = T> + 'a>>;