Enum libp2p::websocket::framed::OutgoingData [−][src]
Data sent over the websocket connection.
Variants
Send some bytes.
Send a PING message.
Send an unsolicited PONG message. (Incoming PINGs are answered automatically.)
Trait Implementations
impl Clone for OutgoingData
[src]
impl Clone for OutgoingData
[src]pub fn clone(&self) -> OutgoingData
[src]
pub fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl<T> Sink<OutgoingData> for Connection<T> where
T: AsyncRead + AsyncWrite + Send + Unpin + 'static,
[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.
pub fn poll_ready(
self: Pin<&mut Connection<T>>,
cx: &mut Context<'_>
) -> Poll<Result<(), Error>>
[src]
self: Pin<&mut Connection<T>>,
cx: &mut Context<'_>
) -> Poll<Result<(), Error>>
pub fn start_send(
self: Pin<&mut Connection<T>>,
item: OutgoingData
) -> Result<(), Error>
[src]
self: Pin<&mut Connection<T>>,
item: OutgoingData
) -> Result<(), Error>
pub fn poll_flush(
self: Pin<&mut Connection<T>>,
cx: &mut Context<'_>
) -> Poll<Result<(), Error>>
[src]
self: Pin<&mut Connection<T>>,
cx: &mut Context<'_>
) -> Poll<Result<(), Error>>
pub fn poll_close(
self: Pin<&mut Connection<T>>,
cx: &mut Context<'_>
) -> Poll<Result<(), Error>>
[src]
self: Pin<&mut Connection<T>>,
cx: &mut Context<'_>
) -> Poll<Result<(), Error>>