Enum mco_http::version::HttpVersion
source · pub enum HttpVersion {
Http09,
Http10,
Http11,
Http20,
}Expand description
Represents a version of the HTTP spec.
Variants§
Trait Implementations§
source§impl AsRef<str> for HttpVersion
impl AsRef<str> for HttpVersion
source§impl Clone for HttpVersion
impl Clone for HttpVersion
source§fn clone(&self) -> HttpVersion
fn clone(&self) -> HttpVersion
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Debug for HttpVersion
impl Debug for HttpVersion
source§impl Display for HttpVersion
impl Display for HttpVersion
source§impl FromStr for HttpVersion
impl FromStr for HttpVersion
source§impl Hash for HttpVersion
impl Hash for HttpVersion
source§impl Ord for HttpVersion
impl Ord for HttpVersion
source§fn cmp(&self, other: &HttpVersion) -> Ordering
fn cmp(&self, other: &HttpVersion) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
source§impl PartialEq for HttpVersion
impl PartialEq for HttpVersion
source§fn eq(&self, other: &HttpVersion) -> bool
fn eq(&self, other: &HttpVersion) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl PartialOrd for HttpVersion
impl PartialOrd for HttpVersion
source§fn partial_cmp(&self, other: &HttpVersion) -> Option<Ordering>
fn partial_cmp(&self, other: &HttpVersion) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self and other) and is used by the <=
operator. Read moreimpl Copy for HttpVersion
impl Eq for HttpVersion
impl StructuralEq for HttpVersion
impl StructuralPartialEq for HttpVersion
Auto Trait Implementations§
impl RefUnwindSafe for HttpVersion
impl Send for HttpVersion
impl Sync for HttpVersion
impl Unpin for HttpVersion
impl UnwindSafe for HttpVersion
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more