Skip to main content

WsConnection

Struct WsConnection 

Source
pub struct WsConnection<F> { /* private fields */ }

Implementations§

Source§

impl<F> WsConnection<F>

Source

pub fn codec(&self) -> &Codec

Get codec reference

Source

pub fn response(&self) -> &ClientResponse

Get reference to response

Source§

impl<F> WsConnection<F>

Source

pub fn sink(&self) -> WsSink

Get ws sink

Source

pub fn into_inner(self) -> (Io<F>, Codec, ClientResponse)

Consumes the WsConnection, returning it’as underlying I/O stream object and response.

Source§

impl WsConnection<Sealed>

Source

pub fn receiver(self) -> Receiver<Result<Frame, WsError<()>>>

Start client websockets with SinkService and mpsc::Receiver<Frame>

Source

pub async fn start<T, U>(self, service: U) -> Result<(), WsError<T::Error>>
where T: Service<Frame, Response = Option<Message>> + 'static, U: IntoService<T, Frame>,

Start client websockets service.

Source§

impl<F: Filter> WsConnection<F>

Source

pub fn seal(self) -> WsConnection<Sealed>

Convert I/O stream to boxed stream

Source

pub fn into_transport(self) -> Io<Layer<WsTransport, F>>

Convert to ws stream to plain io stream

Trait Implementations§

Source§

impl<F> Debug for WsConnection<F>

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

Auto Trait Implementations§

§

impl<F> !Freeze for WsConnection<F>

§

impl<F> !RefUnwindSafe for WsConnection<F>

§

impl<F> !Send for WsConnection<F>

§

impl<F> !Sync for WsConnection<F>

§

impl<F> Unpin for WsConnection<F>
where F: Unpin,

§

impl<F> !UnwindSafe for WsConnection<F>

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

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

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.