pub struct Connection<T, S>where
S: HttpService<Incoming>,{ /* private fields */ }
Expand description
A Future
representing an HTTP/1 connection, bound to a
Service
, returned from
Builder::serve_connection
.
To drive HTTP on this connection this future must be polled, typically with
.await
. If it isn’t polled, no progress will be made on this connection.
Implementations§
source§impl<I, B, S> Connection<I, S>
impl<I, B, S> Connection<I, S>
sourcepub fn graceful_shutdown(self: Pin<&mut Self>)
pub fn graceful_shutdown(self: Pin<&mut Self>)
Start a graceful shutdown process for this connection.
This Connection
should continue to be polled until shutdown
can finish.
§Note
This should only be called while the Connection
future is still
pending. If called after Connection::poll
has resolved, this does
nothing.
sourcepub fn into_parts(self) -> Parts<I, S>
pub fn into_parts(self) -> Parts<I, S>
Return the inner IO object, and additional information.
If the IO object has been “rewound” the io will not contain those bytes rewound.
This should only be called after poll_without_shutdown
signals
that the connection is “done”. Otherwise, it may not have finished
flushing all necessary HTTP bytes.
§Panics
This method will panic if this connection is using an h2 protocol.
sourcepub fn poll_without_shutdown(
&mut self,
cx: &mut Context<'_>,
) -> Poll<Result<()>>
pub fn poll_without_shutdown( &mut self, cx: &mut Context<'_>, ) -> Poll<Result<()>>
Poll the connection for completion, but without calling shutdown
on the underlying IO.
This is useful to allow running a connection while doing an HTTP
upgrade. Once the upgrade is completed, the connection would be “done”,
but it is not desired to actually shutdown the IO object. Instead you
would take it back using into_parts
.
sourcepub fn without_shutdown(self) -> impl Future<Output = Result<Parts<I, S>>>
pub fn without_shutdown(self) -> impl Future<Output = Result<Parts<I, S>>>
Prevent shutdown of the underlying IO object at the end of service the request,
instead run into_parts
. This is a convenience wrapper over poll_without_shutdown
.
§Error
This errors if the underlying connection protocol is not HTTP/1.
sourcepub fn with_upgrades(self) -> UpgradeableConnection<I, S> ⓘwhere
I: Send,
pub fn with_upgrades(self) -> UpgradeableConnection<I, S> ⓘwhere
I: Send,
Enable this connection to support higher-level HTTP upgrades.
See the upgrade
module for more.
Trait Implementations§
source§impl<I, S> Debug for Connection<I, S>where
S: HttpService<Incoming>,
impl<I, S> Debug for Connection<I, S>where
S: HttpService<Incoming>,
source§impl<I, B, S> Future for Connection<I, S>
impl<I, B, S> Future for Connection<I, S>
impl<'__pin, T, S> Unpin for Connection<T, S>
Auto Trait Implementations§
impl<T, S> Freeze for Connection<T, S>
impl<T, S> !RefUnwindSafe for Connection<T, S>
impl<T, S> Send for Connection<T, S>
impl<T, S> Sync for Connection<T, S>
impl<T, S> !UnwindSafe for Connection<T, 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
source§impl<T> FutureExt for T
impl<T> FutureExt for T
source§fn map<U, F>(self, f: F) -> Map<Self, F>
fn map<U, F>(self, f: F) -> Map<Self, F>
source§fn map_into<U>(self) -> MapInto<Self, U>
fn map_into<U>(self) -> MapInto<Self, U>
source§fn then<Fut, F>(self, f: F) -> Then<Self, Fut, F>
fn then<Fut, F>(self, f: F) -> Then<Self, Fut, F>
f
. Read moresource§fn left_future<B>(self) -> Either<Self, B>
fn left_future<B>(self) -> Either<Self, B>
source§fn right_future<A>(self) -> Either<A, Self>
fn right_future<A>(self) -> Either<A, Self>
source§fn into_stream(self) -> IntoStream<Self>where
Self: Sized,
fn into_stream(self) -> IntoStream<Self>where
Self: Sized,
source§fn flatten(self) -> Flatten<Self>
fn flatten(self) -> Flatten<Self>
source§fn flatten_stream(self) -> FlattenStream<Self>
fn flatten_stream(self) -> FlattenStream<Self>
source§fn fuse(self) -> Fuse<Self>where
Self: Sized,
fn fuse(self) -> Fuse<Self>where
Self: Sized,
poll
will never again be called once it has
completed. This method can be used to turn any Future
into a
FusedFuture
. Read moresource§fn inspect<F>(self, f: F) -> Inspect<Self, F>
fn inspect<F>(self, f: F) -> Inspect<Self, F>
source§fn catch_unwind(self) -> CatchUnwind<Self>where
Self: Sized + UnwindSafe,
fn catch_unwind(self) -> CatchUnwind<Self>where
Self: Sized + UnwindSafe,
source§fn remote_handle(self) -> (Remote<Self>, RemoteHandle<Self::Output>)where
Self: Sized,
fn remote_handle(self) -> (Remote<Self>, RemoteHandle<Self::Output>)where
Self: Sized,
()
on completion and sends
its output to another future on a separate task. Read moresource§fn boxed<'a>(self) -> Pin<Box<dyn Future<Output = Self::Output> + Send + 'a>>
fn boxed<'a>(self) -> Pin<Box<dyn Future<Output = Self::Output> + Send + 'a>>
source§fn boxed_local<'a>(self) -> Pin<Box<dyn Future<Output = Self::Output> + 'a>>where
Self: Sized + 'a,
fn boxed_local<'a>(self) -> Pin<Box<dyn Future<Output = Self::Output> + 'a>>where
Self: Sized + 'a,
source§fn unit_error(self) -> UnitError<Self>where
Self: Sized,
fn unit_error(self) -> UnitError<Self>where
Self: Sized,
Future<Output = T>
into a
TryFuture<Ok = T, Error = ()
>.source§fn never_error(self) -> NeverError<Self>where
Self: Sized,
fn never_error(self) -> NeverError<Self>where
Self: Sized,
Future<Output = T>
into a
TryFuture<Ok = T, Error = Never
>.