[][src]Module solicit::http::frame::data

The module contains the implementation of the DATA frame and associated flags.

Structs

DataChunk

A helper struct that allows the chunk to be either borrowed or owned. Used to provide the From implementations that allow us to implement generic methods that accept any type that can be converted into a DataChunk (given that the native Cow type does not have these implementations and we cannot add them).

DataFrame

A struct representing the DATA frames of HTTP/2, as defined in the HTTP/2 spec, section 6.1.

Enums

DataFlag

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