pub struct SplitWriter<S> { /* private fields */ }Expand description
The write half of a split WebSocket stream
Created by calling split() on a WebSocketStream.
This half owns the write side of the TCP stream and can operate
completely independently from the read half.
Implementations§
Auto Trait Implementations§
impl<S> Freeze for SplitWriter<S>
impl<S> RefUnwindSafe for SplitWriter<S>
impl<S> Send for SplitWriter<S>where
S: Send,
impl<S> Sync for SplitWriter<S>where
S: Sync,
impl<S> Unpin for SplitWriter<S>
impl<S> UnwindSafe for SplitWriter<S>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more