[][src]Struct ws_async::client::Client

pub struct Client<P = Body> { /* fields omitted */ }

Methods

impl Client[src]

pub fn new() -> Self[src]

pub async fn connect<'_>(&'_ mut self, uri: Uri) -> Result<WebSocket>[src]

Trait Implementations

impl<P: Debug> Debug for Client<P>[src]

impl Default for Client[src]

impl<P> From<Builder> for Client<P>[src]

impl Service<Uri> for Client[src]

type Response = WebSocket

Responses given by the service.

type Error = Error

Errors produced by the service.

type Future = Pin<Box<dyn Future<Output = Result<Self::Response>> + Send + 'static>>

The future response value.

Auto Trait Implementations

impl<P = Body> !RefUnwindSafe for Client<P>

impl<P> Send for Client<P>

impl<P> Sync for Client<P>

impl<P> Unpin for Client<P>

impl<P = Body> !UnwindSafe for Client<P>

Blanket Implementations

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

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

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

impl<T> From<T> for T[src]

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> 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<V, T> VZip<V> for T where
    V: MultiLane<T>,