Enum curl::easy::InfoType [] [src]

pub enum InfoType {
    Text,
    HeaderIn,
    HeaderOut,
    DataIn,
    DataOut,
    SslDataIn,
    SslDataOut,
    // some variants omitted
}

Possible data chunks that can be witnessed as part of the debug_function callback.

Variants

The data is informational text.

The data is header (or header-like) data received from the peer.

The data is header (or header-like) data sent to the peer.

The data is protocol data received from the peer.

The data is protocol data sent to the peer.

The data is SSL/TLS (binary) data received from the peer.

The data is SSL/TLS (binary) data sent to the peer.