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

pub struct Destination { /* fields omitted */ }

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

Methods

impl Destination
[src]

Get the protocol scheme.

Get the hostname.

Get the port, if specified.

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.

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.

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]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for Destination
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl Send for Destination

impl Sync for Destination