Sign in
android
/
platform
/
external
/
rust
/
android-crates-io
/
3ea0352d4f181327e0bf9260939bd225b08e8d60
/
.
/
crates
/
tower
/
src
/
spawn_ready
/
future.rs
blob: c7d4da57211efe18e9b2018ef2923683e103ce3b [
file
] [
log
] [
blame
]
//! Background readiness types
opaque_future
!
{
/// Response future from [`SpawnReady`] services.
///
/// [`SpawnReady`]: crate::spawn_ready::SpawnReady
pub
type
ResponseFuture
<
F
,
E
>
=
futures_util
::
future
::
MapErr
<
F
,
fn
(
E
)
->
crate
::
BoxError
>;
}