Enum solicit::http::frame::headers::HeadersFlag [] [src]

pub enum HeadersFlag {
    EndStream,
    EndHeaders,
    Padded,
    Priority,
}

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

HTTP/2 spec, section 6.2.

Variants

EndStream
EndHeaders
Padded
Priority

Trait Implementations

impl Flag for HeadersFlag

fn bitmask(&self) -> u8

Derived Implementations

impl Clone for HeadersFlag

fn clone(&self) -> HeadersFlag

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

impl PartialEq for HeadersFlag

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

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

impl Debug for HeadersFlag

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

impl Copy for HeadersFlag