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

fn clone(&self) -> SettingsFlag

Returns a copy of the value. Read more

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

Performs copy-assignment from source. Read more

impl PartialEq for SettingsFlag
[src]

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

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

fn ne(&self, other: &Rhs) -> bool
1.0.0

This method tests for !=.

impl Debug for SettingsFlag
[src]

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

Formats the value using the given formatter.

impl Copy for SettingsFlag
[src]

impl Flag for SettingsFlag
[src]

fn bitmask(&self) -> u8

Returns a bit mask that represents the flag.