Struct actix_web::client::Connect [−][src]
pub struct Connect { /* fields omitted */ }
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
fn fmt(&self, f: &mut Formatter) -> Result
[src]
fn fmt(&self, f: &mut Formatter) -> Result
Formats the value using the given formatter. Read more
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
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]
fn handle(&mut self, msg: Connect, ctx: &mut Self::Context) -> Self::Result
Method is called for every message received by this Actor