[][src]Struct actix_web::client::Connect

pub struct Connect { /* fields omitted */ }

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]

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

Auto Trait Implementations

impl Send for Connect

impl Sync for Connect

Blanket Implementations

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> From for T[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Erased for T