Enum http_box::http2::Setting [] [src]

pub enum Setting {
    EnablePush(u32),
    HeaderTableSize(u32),
    InitialWindowSize(u32),
    MaxConcurrentStreams(u32),
    MaxFrameSize(u32),
    MaxHeaderListSize(u32),
    Unsupported(u32),
}

Setting.

Variants

Enable push setting.

Header table size setting.

Initial window size setting.

Maximum concurrent streams setting.

Maximum frame size setting.

Maximum header list size setting.

Unsupported setting.

Methods

impl Setting
[src]

Create a new Setting.

Indicates that this a Setting::HeadersTableSize.

Indicates that this a Setting::HeadersTableSize.

Indicates that this a Setting::InitialWindowSize.

Indicates that this a Setting::MaxConcurrentStreams.

Indicates that this a Setting::MaxFrameSize.

Indicates that this a Setting::MaxHeaderListSize.

Indicates that this a Setting::Unsupported.

Retrieve the value.

Trait Implementations

impl Debug for Setting
[src]

Formats the value using the given formatter.

impl Display for Setting
[src]

Formats the value using the given formatter. Read more