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

pub enum SendStatus {
    Sent,
    Nothing,
}

The enum represents the success status of the operation of sending a next data chunk on an HTTP/2 connection.

Variants

Sent

Indicates that a DATA frame was successfully sent

Nothing

Indicates that nothing was sent, but that no errors occurred.

This is the case when none of the streams had any data to write.

Trait Implementations

impl Debug for SendStatus
[src]

fn fmt(&self, __arg_0: &mut Formatter) -> Result

Formats the value using the given formatter.

impl PartialEq for SendStatus
[src]

fn eq(&self, __arg_0: &SendStatus) -> bool

This method tests for self and other values to be equal, and is used by ==. Read more

fn ne(&self, other: &Rhs) -> bool
1.0.0

This method tests for !=.

impl Copy for SendStatus
[src]

impl Clone for SendStatus
[src]

fn clone(&self) -> SendStatus

Returns a copy of the value. Read more

fn clone_from(&mut self, source: &Self)
1.0.0

Performs copy-assignment from source. Read more