[−][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]
fn clone(&self) -> Destination
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Debug for Destination
[src]
impl TryFrom<Uri> for Destination
[src]
Auto Trait Implementations
impl Send for Destination
impl Unpin for Destination
impl Sync for Destination
impl UnwindSafe for Destination
impl RefUnwindSafe for Destination
Blanket Implementations
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T
[src]
fn clone_into(&self, target: &mut T)
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> From<T> for T
[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
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, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,