Home
last modified time | relevance | path

Searched defs:BoxFuture (Results 1 – 6 of 6) sorted by relevance

/tonic/tonic/src/
H A Dcodegen.rs19 pub type BoxFuture<T, E> = self::Pin<Box<dyn self::Future<Output = Result<T, E>> + Send + 'static>>; typedef
/tonic/tests/integration_tests/src/
H A Dlib.rs74 pub type BoxFuture<'a, T> = std::pin::Pin<Box<dyn std::future::Future<Output = T> + Send + 'a>>; typedef
/tonic/examples/src/tower/
H A Dserver.rs81 type BoxFuture<'a, T> = Pin<Box<dyn std::future::Future<Output = T> + Send + 'a>>; typedef
/tonic/interop/src/
H A Dserver.rs23 type BoxFuture<T, E> = Pin<Box<dyn Future<Output = StdResult<T, E>> + Send + 'static>>; typedef
/tonic/tonic/src/transport/channel/
H A Dmod.rs38 type BoxFuture<'a, T> = Pin<Box<dyn Future<Output = T> + Send + 'a>>; typedef
/tonic/tonic-web/src/
H A Dservice.rs253 type BoxFuture<T, E> = Pin<Box<dyn Future<Output = Result<T, E>> + Send>>; typedef