Struct tiny_http::HTTPVersion [] [src]

pub struct HTTPVersion(pub u8, pub u8);

HTTP version (usually 1.0 or 1.1).

Trait Implementations

impl Ord for HTTPVersion
[src]

fn cmp(&self, __arg_0: &HTTPVersion) -> Ordering

This method returns an Ordering between self and other. Read more

impl Eq for HTTPVersion
[src]

impl PartialEq for HTTPVersion
[src]

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

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

fn ne(&self, __arg_0: &HTTPVersion) -> bool

This method tests for !=.

impl Clone for HTTPVersion
[src]

fn clone(&self) -> HTTPVersion

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

impl Debug for HTTPVersion
[src]

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

Formats the value using the given formatter.

impl Display for HTTPVersion
[src]

fn fmt(&self, formatter: &mut Formatter) -> Result<()Error>

Formats the value using the given formatter.

impl PartialOrd for HTTPVersion
[src]

fn partial_cmp(&self, other: &HTTPVersion) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more

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

This method tests less than (for self and other) and is used by the < operator. Read more

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

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

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

This method tests greater than (for self and other) and is used by the > operator. Read more

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

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

impl PartialEq<(u8, u8)> for HTTPVersion
[src]

fn eq(&self, (major, minor): &(u8, u8)) -> 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 PartialOrd<(u8, u8)> for HTTPVersion
[src]

fn partial_cmp(&self, (major, minor): &(u8, u8)) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more

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

This method tests less than (for self and other) and is used by the < operator. Read more

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

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

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

This method tests greater than (for self and other) and is used by the > operator. Read more

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

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

impl From<(u8, u8)> for HTTPVersion
[src]

fn from((major, minor): (u8, u8)) -> HTTPVersion

Performs the conversion.