pub struct Serve<M, S> { /* private fields */ }
Expand description
Future returned by serve
.
Implementations§
Source§impl<M, S> Serve<M, S>
impl<M, S> Serve<M, S>
Sourcepub fn with_graceful_shutdown<F>(
self,
signal: F,
) -> WithGracefulShutdown<M, S, F>
pub fn with_graceful_shutdown<F>( self, signal: F, ) -> WithGracefulShutdown<M, S, F>
Prepares a server to handle graceful shutdown when the provided future completes.
See the original documentation for the example.
Trait Implementations§
Source§impl<M, S> IntoFuture for Serve<M, S>where
M: for<'a> Service<IncomingStream<'a>, Error = Infallible, Response = S> + Send + 'static,
for<'a> <M as Service<IncomingStream<'a>>>::Future: Send,
S: Service<Request, Response = Response, Error = Infallible> + Clone + Send + 'static,
S::Future: Send,
impl<M, S> IntoFuture for Serve<M, S>where
M: for<'a> Service<IncomingStream<'a>, Error = Infallible, Response = S> + Send + 'static,
for<'a> <M as Service<IncomingStream<'a>>>::Future: Send,
S: Service<Request, Response = Response, Error = Infallible> + Clone + Send + 'static,
S::Future: Send,
Source§type IntoFuture = ServeFuture
type IntoFuture = ServeFuture
Which kind of future are we turning this into?
Source§fn into_future(self) -> Self::IntoFuture
fn into_future(self) -> Self::IntoFuture
Creates a future from a value. Read more
Auto Trait Implementations§
impl<M, S> !Freeze for Serve<M, S>
impl<M, S> !RefUnwindSafe for Serve<M, S>
impl<M, S> Send for Serve<M, S>
impl<M, S> Sync for Serve<M, S>
impl<M, S> Unpin for Serve<M, S>
impl<M, S> !UnwindSafe for Serve<M, S>
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> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
Source§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
Wrap the input message
T
in a tonic::Request