[][src]Enum curl::easy::HttpVersion

pub enum HttpVersion {
    Any,
    V10,
    V11,
    V2,
    V2TLS,
    V2PriorKnowledge,
    // some variants omitted
}
[]

Possible values to pass to the http_version method.

Variants

Any
[]

We don't care what http version to use, and we'd like the library to choose the best possible for us.

V10
[]

Please use HTTP 1.0 in the request

V11
[]

Please use HTTP 1.1 in the request

V2
[]

Please use HTTP 2 in the request (Added in CURL 7.33.0)

V2TLS
[]

Use version 2 for HTTPS, version 1.1 for HTTP (Added in CURL 7.47.0)

V2PriorKnowledge
[]

Please use HTTP 2 without HTTP/1.1 Upgrade (Added in CURL 7.49.0)

Trait Implementations

impl Clone for HttpVersion[src][+]

impl Copy for HttpVersion[src]

impl Debug for HttpVersion[src][+]

Auto Trait Implementations

impl Send for HttpVersion

impl Unpin for HttpVersion

impl Sync for HttpVersion

impl UnwindSafe for HttpVersion

impl RefUnwindSafe for HttpVersion

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src][+]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> Into<U> for T where
    U: From<T>, 
[src][+]

impl<T> From<T> for T[src][+]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src][+]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src][+]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src][+]

impl<T> Borrow<T> for T where
    T: ?Sized
[src][+]

impl<T> Any for T where
    T: 'static + ?Sized
[src][+]