Struct ws_tool::codec::AsyncWsFrameCodec
source · [−]pub struct AsyncWsFrameCodec<S: AsyncRead + AsyncWrite> { /* private fields */ }Implementations
sourceimpl<S: AsyncRead + AsyncWrite + Unpin> AsyncWsFrameCodec<S>
impl<S: AsyncRead + AsyncWrite + Unpin> AsyncWsFrameCodec<S>
pub fn new(stream: S) -> Self
pub fn new_with(stream: S, config: FrameConfig) -> Self
pub fn factory(_req: Request<()>, stream: S) -> Result<Self, WsError>
pub fn check_fn(
key: String,
resp: Response<()>,
stream: S
) -> Result<Self, WsError>
pub fn stream_mut(&mut self) -> &mut S
pub async fn receive(&mut self) -> Result<Frame, WsError>
pub async fn send(
&mut self,
code: OpCode,
payload: &[u8]
) -> Result<usize, WsError>
Auto Trait Implementations
impl<S> RefUnwindSafe for AsyncWsFrameCodec<S> where
S: RefUnwindSafe,
impl<S> Send for AsyncWsFrameCodec<S> where
S: Send,
impl<S> Sync for AsyncWsFrameCodec<S> where
S: Sync,
impl<S> Unpin for AsyncWsFrameCodec<S> where
S: Unpin,
impl<S> UnwindSafe for AsyncWsFrameCodec<S> where
S: UnwindSafe,
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
pub fn vzip(self) -> V
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more