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

Ack

Trait Implementations

impl Flag for SettingsFlag

fn bitmask(&self) -> u8

Derived Implementations

impl Clone for SettingsFlag

fn clone(&self) -> SettingsFlag

fn clone_from(&mut self, source: &Self)

impl PartialEq for SettingsFlag

fn eq(&self, __arg_0: &SettingsFlag) -> bool

fn ne(&self, __arg_0: &SettingsFlag) -> bool

impl Debug for SettingsFlag

fn fmt(&self, __arg_0: &mut Formatter) -> Result

impl Copy for SettingsFlag