[−][src]Struct hyper::client::connect::Destination
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][−]
P: Into<Option<u16>>,
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][+]
impl Debug for Destination
[src][+]
Auto Trait Implementations
impl Send for Destination
impl Sync for Destination
Blanket Implementations
impl<T> From for T
[src][−]
impl<T, U> Into for T where
U: From<T>,
[src][−]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src][−]
T: Clone,
impl<T, U> TryFrom for T where
T: From<U>,
[src][−]
T: From<U>,
type Error = !
🔬 This is a nightly-only experimental API. (
try_from
)The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src][−]
impl<T> Borrow for T where
T: ?Sized,
[src][−]
T: ?Sized,
impl<T> BorrowMut for T where
T: ?Sized,
[src][−]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src][−]
impl<T, U> TryInto for T where
U: TryFrom<T>,
[src][−]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
🔬 This is a nightly-only experimental API. (
try_from
)The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src][−]
impl<T> Any for T where
T: 'static + ?Sized,
[src][−]
T: 'static + ?Sized,