Skip to main content

Config

Struct Config 

Source
pub struct Config {
    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>,
    pub data_frame_budget: usize,
}

Fields§

§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.

§data_frame_budget: usize

connection-level budget (in bytes) for DATA framing overhead.

Default 25600 bytes

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§

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>,

Source§

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>,

Source§

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