Struct solicit::http::frame::data::DataFrame [−][src]
A struct representing the DATA frames of HTTP/2, as defined in the HTTP/2 spec, section 6.1.
Fields
data: Vec<u8>
The data found in the frame as an opaque byte sequence. It never includes padding bytes.
Methods
impl DataFrame[src]
impl DataFramepub fn new(stream_id: StreamId) -> DataFrame[src]
pub fn new(stream_id: StreamId) -> DataFrameCreates a new empty DataFrame, associated to the stream with the
given ID.
pub fn is_padded(&self) -> bool[src]
pub fn is_padded(&self) -> boolReturns true if the DATA frame is padded, otherwise false.
pub fn is_end_of_stream(&self) -> bool[src]
pub fn is_end_of_stream(&self) -> boolReturns whther this frame ends the stream it is associated with.
pub fn set_padding(&mut self, pad_len: u8)[src]
pub 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 PartialEq for DataFrame[src]
impl PartialEq for DataFramefn eq(&self, other: &DataFrame) -> bool[src]
fn eq(&self, other: &DataFrame) -> boolThis method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, other: &DataFrame) -> bool[src]
fn ne(&self, other: &DataFrame) -> boolThis method tests for !=.
impl Debug for DataFrame[src]
impl Debug for DataFramefn fmt(&self, f: &mut Formatter) -> Result[src]
fn fmt(&self, f: &mut Formatter) -> ResultFormats the value using the given formatter. Read more
impl Clone for DataFrame[src]
impl Clone for DataFramefn clone(&self) -> DataFrame[src]
fn clone(&self) -> DataFrameReturns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
fn clone_from(&mut self, source: &Self)Performs copy-assignment from source. Read more
impl Frame for DataFrame[src]
impl Frame for DataFrametype FlagType = DataFlag
The type that represents the flags that the particular Frame can take. This makes sure that only valid Flags are used with each Frame. Read more
fn from_raw(raw_frame: RawFrame) -> Option<DataFrame>[src]
fn from_raw(raw_frame: RawFrame) -> Option<DataFrame>Creates a new DataFrame from the given RawFrame (i.e. header and
payload), if possible. Returns None if a valid DataFrame cannot be
constructed from the given RawFrame.
fn is_set(&self, flag: DataFlag) -> bool[src]
fn is_set(&self, flag: DataFlag) -> boolTests if the given flag is set for the frame.
fn set_flag(&mut self, flag: DataFlag)[src]
fn set_flag(&mut self, flag: DataFlag)Sets the given flag for the frame.
fn get_stream_id(&self) -> StreamId[src]
fn get_stream_id(&self) -> StreamIdReturns the StreamId of the stream to which the frame is associated.
fn get_header(&self) -> FrameHeader[src]
fn get_header(&self) -> FrameHeaderReturns a FrameHeader based on the current state of the frame.
fn serialize(&self) -> Vec<u8>[src]
fn serialize(&self) -> Vec<u8>Returns a Vec with the serialized representation of the frame.