Struct solicit::http::frame::data::DataFrame [] [src]

pub struct DataFrame {
    pub data: Vec<u8>,
    // some fields omitted
}

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

Fields

data

The data found in the frame as an opaque byte sequence. It never includes padding bytes.

Methods

impl DataFrame

fn new(stream_id: StreamId) -> DataFrame

Creates a new empty DataFrame, associated to the stream with the given ID.

fn is_padded(&self) -> bool

Returns true if the DATA frame is padded, otherwise false.

fn is_end_of_stream(&self) -> bool

Returns whther this frame ends the stream it is associated with.

fn set_padding(&mut self, pad_len: u8)

Sets the number of bytes that should be used as padding for this frame.

Trait Implementations

impl Frame for DataFrame

type FlagType = DataFlag

fn from_raw(raw_frame: RawFrame) -> Option<DataFrame>

fn is_set(&self, flag: DataFlag) -> bool

fn set_flag(&mut self, flag: DataFlag)

fn get_stream_id(&self) -> StreamId

fn get_header(&self) -> FrameHeader

fn serialize(&self) -> Vec<u8>

Derived Implementations

impl PartialEq for DataFrame

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

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

impl Debug for DataFrame

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

impl Clone for DataFrame

fn clone(&self) -> DataFrame

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