Struct soketto::connection::Sender [−][src]
pub struct Sender<T> { /* fields omitted */ }
The sending half of a connection.
Implementations
impl<T: AsyncRead + AsyncWrite + Unpin> Sender<T>
[src]
impl<T: AsyncRead + AsyncWrite + Unpin> Sender<T>
[src]pub async fn send_text(&mut self, data: impl AsRef<str>) -> Result<(), Error>
[src]
Send a text value over the websocket connection.
pub async fn send_binary(&mut self, data: impl AsRef<[u8]>) -> Result<(), Error>
[src]
Send some binary data over the websocket connection.
pub async fn send_binary_mut(
&mut self,
data: impl AsMut<[u8]>
) -> Result<(), Error>
[src]
&mut self,
data: impl AsMut<[u8]>
) -> Result<(), Error>
Send some binary data over the websocket connection.
In contrast to Sender::send_binary
the provided data is modified
in-place, e.g. if masking is necessary.
pub async fn send_ping(&mut self, data: ByteSlice125<'_>) -> Result<(), Error>
[src]
Ping the remote end.
pub async fn send_pong(&mut self, data: ByteSlice125<'_>) -> Result<(), Error>
[src]
Send an unsolicited Pong to the remote.
pub async fn flush(&mut self) -> Result<(), Error>
[src]
Flush the socket buffer.
pub async fn close(&mut self) -> Result<(), Error>
[src]
Send a close message and close the connection.
Trait Implementations
Auto Trait Implementations
impl<T> !RefUnwindSafe for Sender<T>
impl<T> Send for Sender<T> where
T: Send,
T: Send,
impl<T> Sync for Sender<T> where
T: Send,
T: Send,