Struct h2::proto::streams::Config

source ·
pub struct Config {
    pub local_init_window_sz: u32,
    pub initial_max_send_streams: usize,
    pub local_max_buffer_size: usize,
    pub local_next_stream_id: StreamId,
    pub local_push_enabled: bool,
    pub extended_connect_protocol_enabled: bool,
    pub local_reset_duration: Duration,
    pub local_reset_max: usize,
    pub remote_reset_max: usize,
    pub remote_init_window_sz: u32,
    pub remote_max_initiated: Option<usize>,
    pub local_max_error_reset_streams: Option<usize>,
}

Fields§

§local_init_window_sz: u32

Initial window size of locally initiated streams

§initial_max_send_streams: usize

Initial maximum number of locally initiated streams. After receiving a Settings frame from the remote peer, the connection will overwrite this value with the MAX_CONCURRENT_STREAMS specified in the frame.

§local_max_buffer_size: usize

Max amount of DATA bytes to buffer per stream.

§local_next_stream_id: StreamId

The stream ID to start the next local stream with

§local_push_enabled: bool

If the local peer is willing to receive push promises

§extended_connect_protocol_enabled: bool

If extended connect protocol is enabled.

§local_reset_duration: Duration

How long a locally reset stream should ignore frames

§local_reset_max: usize

Maximum number of locally reset streams to keep at a time

§remote_reset_max: usize

Maximum number of remotely reset “pending accept” streams to keep at a time. Going over this number results in a connection error.

§remote_init_window_sz: u32

Initial window size of remote initiated streams

§remote_max_initiated: Option<usize>

Maximum number of remote initiated streams

§local_max_error_reset_streams: Option<usize>

Maximum number of locally reset streams due to protocol error across the lifetime of the connection.

When this gets exceeded, we issue GOAWAYs.

Trait Implementations§

source§

impl Debug for Config

source§

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

Formats the value using the given formatter. Read more

Auto Trait Implementations§

§

impl Freeze for Config

§

impl RefUnwindSafe for Config

§

impl Send for Config

§

impl Sync for Config

§

impl Unpin for Config

§

impl UnwindSafe for Config

Blanket Implementations§

source§

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

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

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

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where 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 T
where 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 T
where 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 T
where 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