Enum httpbis::solicit::frame::settings::HttpSetting [] [src]

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

An enum that lists all valid settings that can be sent in a SETTINGS frame.

Each setting has a value that is a 32 bit unsigned integer (6.5.1.).

Variants

Methods

impl HttpSetting
[src]

Creates a new HttpSetting with the correct variant corresponding to the given setting id, based on the settings IDs defined in section 6.5.2.

Returns the setting ID as an unsigned 16 bit integer, as defined in section 6.5.2.

Gets the setting value by unpacking it from the wrapped u32.

Trait Implementations

impl Clone for HttpSetting
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for HttpSetting
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Debug for HttpSetting
[src]

Formats the value using the given formatter.

impl Copy for HttpSetting
[src]