Enum solicit::http::frame::headers::HeadersFlag [−][src]
pub enum HeadersFlag {
EndStream,
EndHeaders,
Padded,
Priority,
}An enum representing the flags that a HeadersFrame can have.
The integer representation associated to each variant is that flag's
bitmask.
HTTP/2 spec, section 6.2.
Variants
EndStreamEndHeadersPaddedPriority
Trait Implementations
impl Clone for HeadersFlag[src]
impl Clone for HeadersFlagfn clone(&self) -> HeadersFlag[src]
fn clone(&self) -> HeadersFlagReturns 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 HeadersFlag[src]
impl PartialEq for HeadersFlagfn eq(&self, other: &HeadersFlag) -> bool[src]
fn eq(&self, other: &HeadersFlag) -> 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 HeadersFlag[src]
impl Debug for HeadersFlagfn 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 HeadersFlag[src]
impl Copy for HeadersFlagimpl Flag for HeadersFlag[src]
impl Flag for HeadersFlagAuto Trait Implementations
impl Send for HeadersFlag
impl Send for HeadersFlagimpl Sync for HeadersFlag
impl Sync for HeadersFlag