Struct h2x::Conn

source ·
pub struct Conn<IO>(_);
Expand description

Represents an HTTP/2 connection.

Implementations§

source§

impl<IO> Conn<IO>where IO: Unpin + AsyncRead + AsyncWrite,

source

pub async fn handshake(io: IO) -> Result<Conn<IO>>

Creates a new configured HTTP/2 server with default configuration.

source

pub async fn accept(&mut self) -> Option<Result<(Request, Response)>>

Accept a new incoming stream on the HTTP/2 connection

Methods from Deref<Target = Connection<IO, Bytes>>§

source

pub async fn accept( &mut self ) -> impl Future<Output = Option<Result<(Request<RecvStream>, SendResponse<B>), Error>>>

Accept the next incoming request on this connection.

source

pub fn set_target_window_size(&mut self, size: u32)

Sets the target window size for the whole connection.

If size is greater than the current value, then a WINDOW_UPDATE frame will be immediately sent to the remote, increasing the connection level window by size - current_value.

If size is less than the current value, nothing will happen immediately. However, as window capacity is released by FlowControl instances, no WINDOW_UPDATE frames will be sent out until the number of “in flight” bytes drops below size.

The default value is 65,535.

See FlowControl documentation for more details.

source

pub fn set_initial_window_size(&mut self, size: u32) -> Result<(), Error>

Set a new INITIAL_WINDOW_SIZE setting (in octets) for stream-level flow control for received data.

The SETTINGS will be sent to the remote, and only applied once the remote acknowledges the change.

This can be used to increase or decrease the window size for existing streams.

Errors

Returns an error if a previous call is still pending acknowledgement from the remote endpoint.

source

pub fn enable_connect_protocol(&mut self) -> Result<(), Error>

Enables the extended CONNECT protocol.

Errors

Returns an error if a previous call is still pending acknowledgement from the remote endpoint.

source

pub fn poll_closed(&mut self, cx: &mut Context<'_>) -> Poll<Result<(), Error>>

Returns Ready when the underlying connection has closed.

If any new inbound streams are received during a call to poll_closed, they will be queued and returned on the next call to poll_accept.

This function will advance the internal connection state, driving progress on all the other handles (e.g. RecvStream and SendStream).

See here for more details.

source

pub fn abrupt_shutdown(&mut self, reason: Reason)

Sets the connection to a GOAWAY state.

Does not terminate the connection. Must continue being polled to close connection.

After flushing the GOAWAY frame, the connection is closed. Any outstanding streams do not prevent the connection from closing. This should usually be reserved for shutting down when something bad external to h2 has happened, and open streams cannot be properly handled.

For graceful shutdowns, see graceful_shutdown.

source

pub fn graceful_shutdown(&mut self)

Starts a graceful shutdown process.

Must continue being polled to close connection.

It’s possible to receive more requests after calling this method, since they might have been in-flight from the client already. After about 1 RTT, no new requests should be accepted. Once all active streams have completed, the connection is closed.

source

pub fn ping_pong(&mut self) -> Option<PingPong>

Takes a PingPong instance from the connection.

Note

This may only be called once. Calling multiple times will return None.

source

pub fn max_concurrent_send_streams(&self) -> usize

Returns the maximum number of concurrent streams that may be initiated by the server on this connection.

This limit is configured by the client peer by sending the SETTINGS_MAX_CONCURRENT_STREAMS parameter in a SETTINGS frame. This method returns the currently acknowledged value received from the remote.

source

pub fn max_concurrent_recv_streams(&self) -> usize

Returns the maximum number of concurrent streams that may be initiated by the client on this connection.

This returns the value of the SETTINGS_MAX_CONCURRENT_STREAMS parameter sent in a SETTINGS frame that has been acknowledged by the remote peer. The value to be sent is configured by the Builder::max_concurrent_streams method before handshaking with the remote peer.

Trait Implementations§

source§

impl<IO: Debug> Debug for Conn<IO>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<IO> Deref for Conn<IO>

§

type Target = Connection<IO, Bytes>

The resulting type after dereferencing.
source§

fn deref(&self) -> &Self::Target

Dereferences the value.
source§

impl<IO> DerefMut for Conn<IO>

source§

fn deref_mut(&mut self) -> &mut Self::Target

Mutably dereferences the value.

Auto Trait Implementations§

§

impl<IO> !RefUnwindSafe for Conn<IO>

§

impl<IO> Send for Conn<IO>where IO: Send,

§

impl<IO> Sync for Conn<IO>where IO: Sync,

§

impl<IO> Unpin for Conn<IO>where IO: Unpin,

§

impl<IO> !UnwindSafe for Conn<IO>

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<T> WithSubscriber for T

source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more