[][src]Trait solicit::http::frame::FrameIR

pub trait FrameIR {
    fn serialize_into<B: FrameBuilder>(self, builder: &mut B) -> Result<()>;
}

A trait that types that are an intermediate representation of HTTP/2 frames should implement. It allows us to generically serialize any intermediate representation into an on-the-wire representation.

Required methods

fn serialize_into<B: FrameBuilder>(self, builder: &mut B) -> Result<()>

Write out the on-the-wire representation of the frame into the given FrameBuilder.

Loading content...

Implementors

impl FrameIR for RstStreamFrame[src]

impl FrameIR for SettingsFrame[src]

impl FrameIR for WindowUpdateFrame[src]

impl<'a> FrameIR for DataFrame<'a>[src]

impl<'a> FrameIR for GoawayFrame<'a>[src]

impl<'a> FrameIR for HeadersFrame<'a>[src]

impl<'a> FrameIR for PingFrame[src]

impl<'a> FrameIR for RawFrame<'a>[src]

RawFrames can be serialized to an on-the-wire format.

Loading content...