Enum solicit::http::connection::HttpFrame[][src]

pub enum HttpFrame {
    DataFrame(DataFrame),
    HeadersFrame(HeadersFrame),
    SettingsFrame(SettingsFrame),
    UnknownFrame(RawFrame),
}

An enum representing all frame variants that can be returned by an HttpConnection.

The variants wrap the appropriate Frame implementation.

Variants

Methods

impl HttpFrame
[src]

Trait Implementations

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

Formats the value using the given formatter. Read more

impl Clone for HttpFrame
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Auto Trait Implementations

impl Send for HttpFrame

impl Sync for HttpFrame