pub struct WithGracefulShutdown<L, M, S, F> { /* private fields */ }
Expand description
Serve future with graceful shutdown enabled.
Implementations§
Source§impl<L, M, S, F> WithGracefulShutdown<L, M, S, F>where
L: Listener,
impl<L, M, S, F> WithGracefulShutdown<L, M, S, F>where
L: Listener,
Trait Implementations§
Source§impl<L, M, S, F> Debug for WithGracefulShutdown<L, M, S, F>
impl<L, M, S, F> Debug for WithGracefulShutdown<L, M, S, F>
Source§impl<L, M, S, F> IntoFuture for WithGracefulShutdown<L, M, S, F>where
<L as Listener>::Addr: Debug,
M: for<'a> Service<IncomingStream<'a, L>, Error = Infallible, Response = S> + Send + 'static,
<M as Service<IncomingStream<'a, L>>>::Future: for<'a> Send,
S: Service<Request<Body>, Response = Response<Body>, Error = Infallible> + Clone + Send + 'static,
<S as Service<Request<Body>>>::Future: Send,
F: Future<Output = ()> + Send + 'static,
L: Listener,
impl<L, M, S, F> IntoFuture for WithGracefulShutdown<L, M, S, F>where
<L as Listener>::Addr: Debug,
M: for<'a> Service<IncomingStream<'a, L>, Error = Infallible, Response = S> + Send + 'static,
<M as Service<IncomingStream<'a, L>>>::Future: for<'a> Send,
S: Service<Request<Body>, Response = Response<Body>, Error = Infallible> + Clone + Send + 'static,
<S as Service<Request<Body>>>::Future: Send,
F: Future<Output = ()> + Send + 'static,
L: Listener,
Source§type IntoFuture = ServeFuture
type IntoFuture = ServeFuture
Which kind of future are we turning this into?
Source§fn into_future(
self,
) -> <WithGracefulShutdown<L, M, S, F> as IntoFuture>::IntoFuture
fn into_future( self, ) -> <WithGracefulShutdown<L, M, S, F> as IntoFuture>::IntoFuture
Creates a future from a value. Read more
Auto Trait Implementations§
impl<L, M, S, F> Freeze for WithGracefulShutdown<L, M, S, F>
impl<L, M, S, F> RefUnwindSafe for WithGracefulShutdown<L, M, S, F>
impl<L, M, S, F> Send for WithGracefulShutdown<L, M, S, F>
impl<L, M, S, F> Sync for WithGracefulShutdown<L, M, S, F>
impl<L, M, S, F> Unpin for WithGracefulShutdown<L, M, S, F>
impl<L, M, S, F> UnwindSafe for WithGracefulShutdown<L, M, S, F>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
Source§fn in_current_span(self) -> Instrumented<Self> ⓘ
fn in_current_span(self) -> Instrumented<Self> ⓘ
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more