[][src]Struct isahc::config::VersionNegotiation

pub struct VersionNegotiation { /* fields omitted */ }

A strategy for selecting what HTTP versions should be used when communicating with a server.

Methods

impl VersionNegotiation[src]

pub const fn latest_compatible() -> Self[src]

Always prefer the latest supported version with a preference for old versions if necessary in order to connect. This is the default.

Typically negotiation will begin with an HTTP/1.1 request, upgrading to HTTP/2 if possible, then to HTTP/3 if possible, etc.

pub const fn http10() -> Self[src]

Connect via HTTP/1.0 and do not attempt to use a higher version.

pub const fn http11() -> Self[src]

Connect via HTTP/1.1 and do not attempt to use a higher version.

pub const fn http2() -> Self[src]

Connect via HTTP/2. Failure to connect will not fall back to old versions, unless HTTP/1.1 is negotiated via TLS ALPN before the session begins.

If HTTP/2 support is not compiled in, then using this strategy will always result in an error.

This strategy is often referred to as HTTP/2 with Prior Knowledge.

Trait Implementations

impl Clone for VersionNegotiation[src]

impl Default for VersionNegotiation[src]

impl Debug for VersionNegotiation[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

type Owned = T

The resulting type after obtaining ownership.

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

type Error = !

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> Borrow<T> for T where
    T: ?Sized
[src]

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

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