Enum solicit::http::frame::data::DataFlag [] [src]

pub enum DataFlag {
    EndStream,
    Padded,
}

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

HTTP/2 spec, section 6.1.

Variants

EndStream
Padded

Trait Implementations

impl Flag for DataFlag

fn bitmask(&self) -> u8

Derived Implementations

impl Clone for DataFlag

fn clone(&self) -> DataFlag

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

impl PartialEq for DataFlag

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

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

impl Debug for DataFlag

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

impl Copy for DataFlag