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
SentIndicates that a DATA frame was successfully sent
NothingIndicates 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 Clone for SendStatus[src]
impl Clone for SendStatusfn clone(&self) -> SendStatus[src]
fn clone(&self) -> SendStatusReturns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
fn clone_from(&mut self, source: &Self)1.0.0
[src]Performs copy-assignment from source. Read more
impl Copy for SendStatus[src]
impl Copy for SendStatusimpl PartialEq for SendStatus[src]
impl PartialEq for SendStatusfn eq(&self, other: &SendStatus) -> bool[src]
fn eq(&self, other: &SendStatus) -> boolThis method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, other: &Rhs) -> bool1.0.0[src]
fn ne(&self, other: &Rhs) -> bool1.0.0
[src]This method tests for !=.
impl Debug for SendStatus[src]
impl Debug for SendStatusAuto Trait Implementations
impl Send for SendStatus
impl Send for SendStatusimpl Sync for SendStatus
impl Sync for SendStatus