Struct actix_web::client::Connect [−][src]
Connect
type represents a message that can be sent to
ClientConnector
with a connection request.
Methods
impl Connect
[src]
[−]
impl Connect
pub fn new<U>(uri: U) -> Result<Connect, HttpError> where
Uri: HttpTryFrom<U>,
[src]
[−]
pub fn new<U>(uri: U) -> Result<Connect, HttpError> where
Uri: HttpTryFrom<U>,
Create Connect
message for specified Uri
pub fn conn_timeout(self, timeout: Duration) -> Self
[src]
[−]
pub fn conn_timeout(self, timeout: Duration) -> Self
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]
[−]
pub fn wait_timeout(self, timeout: Duration) -> Self
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 Debug for Connect
impl Message for Connect
[src]
impl Message for Connect
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]
[+]
impl Handler<Connect> for ClientConnector