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

Trait Implementations

impl Clone for HeadersFlag
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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

Formats the value using the given formatter. Read more

impl Copy for HeadersFlag
[src]

impl Flag for HeadersFlag
[src]

Returns a bit mask that represents the flag.

Auto Trait Implementations

impl Send for HeadersFlag

impl Sync for HeadersFlag