[][src]Struct yarws::Client

pub struct Client { /* fields omitted */ }

Creates WebSocket client side of the connection.

Uses builder pattern for configuring client. Start with new set options and finish with connect.

    let url = "wss://echo.websocket.org";
    let mut socket = Client::new(url)
        .default_logger()
        .cookie("session_id", "1266DE23-C5F4-4AA8-4684-2A417B899421")
        .header("Origin", "https://websocket.org")
        .connect()
        .await?
        .into_text();

Methods

impl Client[src]

pub fn new(url: &str) -> Self[src]

pub fn default_logger(self) -> Client[src]

pub fn logger(self, log: Logger) -> Client[src]

pub fn header(self, key: &str, value: &str) -> Client[src]

pub fn cookie(self, key: &str, value: &str) -> Client[src]

pub async fn connect(__arg0: Self) -> Result<Socket, Error>[src]

Auto Trait Implementations

impl RefUnwindSafe for Client

impl Send for Client

impl Sync for Client

impl Unpin for Client

impl UnwindSafe for Client

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> SendSyncUnwindSafe for T where
    T: Send + Sync + UnwindSafe + ?Sized
[src]

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>,