[−][src]Struct actix_web::client::Connect
Connect
type represents a message that can be sent to
ClientConnector
with a connection request.
Methods
impl Connect
[src]
pub fn new<U>(uri: U) -> Result<Connect, HttpError> where
Uri: HttpTryFrom<U>,
[src]
Uri: HttpTryFrom<U>,
Create Connect
message for specified Uri
pub fn conn_timeout(self, timeout: Duration) -> Self
[src]
Connection timeout, i.e. max time to connect to remote host. Set to 1 second by default.
pub fn wait_timeout(self, timeout: Duration) -> Self
[src]
If connection pool limits are enabled, wait time indicates max time to wait for a connection to become available. Set to 5 seconds by default.
Trait Implementations
impl Debug for Connect
[src]
impl Message for Connect
[src]
type Result = Result<Connection, ClientConnectorError>
The type of value that this message will resolved with if it is successful. Read more
impl Handler<Connect> for ClientConnector
[src]
type Result = ActorResponse<ClientConnector, Connection, ClientConnectorError>
The type of value that this handle will return
fn handle(&mut self, msg: Connect, ctx: &mut Self::Context) -> Self::Result
[src]
Auto Trait Implementations
Blanket Implementations
impl<T, U> Into for T where
U: From<T>,
[src]
U: From<T>,
impl<T> From for T
[src]
impl<T, U> TryFrom 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> Borrow for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?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
The type returned in the event of a conversion error.