[][src]Struct hyper::client::connect::Destination

pub struct Destination { /* fields omitted */ }

A set of properties to describe where and how to try to connect.

This type is passed an argument for the Connect trait.

Methods

impl Destination[src]

pub fn try_from_uri(uri: Uri) -> Result<Self>[src]

Try to convert a Uri into a Destination

Error

Returns an error if the uri contains no authority or no scheme.

pub fn scheme(&self) -> &str[src]

Get the protocol scheme.

pub fn host(&self) -> &str[src]

Get the hostname.

pub fn port(&self) -> Option<u16>[src]

Get the port, if specified.

pub fn set_scheme(&mut self, scheme: &str) -> Result<()>[src]

Update the scheme of this destination.

Example

// let mut dst = some_destination...
// Change from "http://"...
assert_eq!(dst.scheme(), "http");

// to "ws://"...
dst.set_scheme("ws");
assert_eq!(dst.scheme(), "ws");

Error

Returns an error if the string is not a valid scheme.

pub fn set_host(&mut self, host: &str) -> Result<()>[src]

Update the host of this destination.

Example

// let mut dst = some_destination...
// Change from "hyper.rs"...
assert_eq!(dst.host(), "hyper.rs");

// to "some.proxy"...
dst.set_host("some.proxy");
assert_eq!(dst.host(), "some.proxy");

Error

Returns an error if the string is not a valid hostname.

pub fn set_port<P>(&mut self, port: P) where
    P: Into<Option<u16>>, 
[src]

Update the port of this destination.

Example

// let mut dst = some_destination...
// Change from "None"...
assert_eq!(dst.port(), None);

// to "4321"...
dst.set_port(4321);
assert_eq!(dst.port(), Some(4321));

// Or remove the port...
dst.set_port(None);
assert_eq!(dst.port(), None);

Trait Implementations

impl Clone for Destination[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Debug for Destination[src]

Auto Trait Implementations

impl Send for Destination

impl Sync for Destination

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 = 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]

impl<T> Erased for T