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.
§Example
use axum::{Router, routing::get};
let router = Router::new().route("/", get(|| async { "Hello, World!" }));
let listener = tokio::net::TcpListener::bind("0.0.0.0:3000").await.unwrap();
axum::serve(listener, router)
.with_graceful_shutdown(shutdown_signal())
.await
.unwrap();
async fn shutdown_signal() {
// ...
}Sourcepub fn tcp_nodelay(self, nodelay: bool) -> Serve<M, S>
pub fn tcp_nodelay(self, nodelay: bool) -> Serve<M, S>
Instructs the server to set the value of the TCP_NODELAY option on every accepted connection.
See also TcpStream::set_nodelay.
§Example
use axum::{Router, routing::get};
let router = Router::new().route("/", get(|| async { "Hello, World!" }));
let listener = tokio::net::TcpListener::bind("0.0.0.0:3000").await.unwrap();
axum::serve(listener, router)
.tcp_nodelay(true)
.await
.unwrap();Sourcepub fn local_addr(&self) -> Result<SocketAddr, Error>
pub fn local_addr(&self) -> Result<SocketAddr, Error>
Returns the local address this server is bound to.
Trait Implementations§
Source§impl<M, S> Debug for Serve<M, S>where
M: Debug,
Available on crate feature tokio and (crate features http1 or http2) only.
impl<M, S> Debug for Serve<M, S>where
M: Debug,
Available on crate feature
tokio and (crate features http1 or http2) only.Source§impl<M, S> IntoFuture for Serve<M, S>
Available on crate feature tokio and (crate features http1 or http2) only.
impl<M, S> IntoFuture for Serve<M, S>
Available on crate feature
tokio and (crate features http1 or http2) only.Source§type IntoFuture = ServeFuture
type IntoFuture = ServeFuture
Which kind of future are we turning this into?
Source§fn into_future(self) -> <Serve<M, S> as IntoFuture>::IntoFuture
fn into_future(self) -> <Serve<M, S> as IntoFuture>::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>where
M: RefUnwindSafe,
S: RefUnwindSafe,
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> UnsafeUnpin for Serve<M, S>where
M: UnsafeUnpin,
impl<M, S> UnwindSafe for Serve<M, S>where
M: UnwindSafe,
S: UnwindSafe,
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