Struct solicit::http::frame::RawFrame [] [src]

pub struct RawFrame { /* fields omitted */ }

A struct that defines the format of the raw HTTP/2 frame, i.e. the frame as it is read from the wire.

This format is defined in section 4.1. of the HTTP/2 spec.

The RawFrame struct simply stores the raw components of an HTTP/2 frame: its header and the payload as a sequence of bytes.

It does not try to interpret the payload bytes, nor do any validation in terms of its validity based on the frame type given in the header. It is simply a wrapper around the two parts of an HTTP/2 frame.

Methods

impl RawFrame
[src]

Creates a new RawFrame with the given FrameHeader. The payload is left empty.

Creates a new RawFrame with the given header and payload. Does not do any validation to determine whether the frame is in a correct state as constructed.

Creates a new RawFrame by parsing the given buffer.

Returns

A RawFrame instance constructed from the given buffer.

If the buffer cannot be parsed into a frame, which includes the payload section having a different length than what was found in the header, None is returned.

Returns a Vec of bytes representing the serialized (on-the-wire) representation of this raw frame.

Returns a FrameHeader instance corresponding to the headers of the RawFrame.

Returns a slice representing the payload of the RawFrame.

Trait Implementations

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

Formats the value using the given formatter.

impl Clone for RawFrame
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Into<Vec<u8>> for RawFrame
[src]

Provide a conversion into a Vec.

Performs the conversion.

impl From<Vec<u8>> for RawFrame
[src]

Provide a conversion from a Vec.

This conversion is unchecked and could cause the resulting RawFrame to be an invalid HTTP/2 frame.

Performs the conversion.