Struct tet_libp2p_websocket::framed::Connection[][src]

pub struct Connection<T> { /* fields omitted */ }

The websocket connection.

Implementations

impl<T> Connection<T> where
    T: AsyncRead + AsyncWrite + Send + Unpin + 'static, 
[src]

pub fn send_data(&mut self, data: Vec<u8>) -> Send<'_, Self, OutgoingData>[src]

Send binary application data to the remote.

pub fn send_ping(&mut self, data: Vec<u8>) -> Send<'_, Self, OutgoingData>[src]

Send a PING to the remote.

pub fn send_pong(&mut self, data: Vec<u8>) -> Send<'_, Self, OutgoingData>[src]

Send an unsolicited PONG to the remote.

Trait Implementations

impl<T> Debug for Connection<T>[src]

impl<T> Sink<OutgoingData> for Connection<T> where
    T: AsyncRead + AsyncWrite + Send + Unpin + 'static, 
[src]

type Error = Error

The type of value produced by the sink when an error occurs.

impl<T> Stream for Connection<T> where
    T: AsyncRead + AsyncWrite + Send + Unpin + 'static, 
[src]

type Item = Result<IncomingData>

Values yielded by the stream.

Auto Trait Implementations

impl<T> !RefUnwindSafe for Connection<T>

impl<T> Send for Connection<T> where
    T: Send

impl<T> !Sync for Connection<T>

impl<T> Unpin for Connection<T> where
    T: Unpin

impl<T> !UnwindSafe for Connection<T>

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, Item> SinkExt<Item> for T where
    T: Sink<Item> + ?Sized

impl<T> StreamExt for T where
    T: Stream + ?Sized

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<S, T, E> TryStream for S where
    S: Stream<Item = Result<T, E>> + ?Sized

type Ok = T

The type of successful values yielded by this future

type Error = E

The type of failures yielded by this future

impl<S> TryStreamExt for S where
    S: TryStream + ?Sized

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,