Enum solicit::http::frame::settings::SettingsFlag[][src]

pub enum SettingsFlag {
    Ack,
}

An enum representing the flags that a SettingsFrame can have. The integer representation associated to each variant is that flag's bitmask.

HTTP/2 spec, section 6.5.

Variants

Trait Implementations

impl Clone for SettingsFlag
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for SettingsFlag
[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 SettingsFlag
[src]

Formats the value using the given formatter. Read more

impl Copy for SettingsFlag
[src]

impl Flag for SettingsFlag
[src]

Returns a bit mask that represents the flag.

Auto Trait Implementations

impl Send for SettingsFlag

impl Sync for SettingsFlag