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

Trait Implementations

impl Clone for DataFlag
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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

Formats the value using the given formatter. Read more

impl Copy for DataFlag
[src]

impl Flag for DataFlag
[src]

Returns a bit mask that represents the flag.

Auto Trait Implementations

impl Send for DataFlag

impl Sync for DataFlag