Enum solicit::http::frame::data::DataFlag [−][src]
pub enum DataFlag {
EndStream,
Padded,
}An enum representing the flags that a DataFrame can have.
The integer representation associated to each variant is that flag's
bitmask.
HTTP/2 spec, section 6.1.
Variants
EndStreamPadded
Trait Implementations
impl Clone for DataFlag[src]
impl Clone for DataFlagfn clone(&self) -> DataFlag[src]
fn clone(&self) -> DataFlagReturns 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 PartialEq for DataFlag[src]
impl PartialEq for DataFlagfn eq(&self, other: &DataFlag) -> bool[src]
fn eq(&self, other: &DataFlag) -> 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 DataFlag[src]
impl Debug for DataFlagfn fmt(&self, f: &mut Formatter) -> Result[src]
fn fmt(&self, f: &mut Formatter) -> ResultFormats the value using the given formatter. Read more
impl Copy for DataFlag[src]
impl Copy for DataFlagimpl Flag for DataFlag[src]
impl Flag for DataFlag