[−][src]Struct websocket_codec::protocol::FrameHeaderCodec
Tokio codec for the low-level header portion of WebSocket frames.
This codec can send and receive FrameHeader
structs.
The frame header is a lower level detail of the WebSocket protocol. At the application level,
use Message
structs and the MessageCodec
.
Trait Implementations
impl Decoder for FrameHeaderCodec
[src]
type Item = FrameHeader
The type of decoded frames.
type Error = Error
The type of unrecoverable frame decoding errors. Read more
pub fn decode(&mut self, src: &mut BytesMut) -> Result<Option<FrameHeader>>
[src]
pub fn decode_eof(
&mut self,
buf: &mut BytesMut
) -> Result<Option<Self::Item>, Self::Error>
[src]
&mut self,
buf: &mut BytesMut
) -> Result<Option<Self::Item>, Self::Error>
pub fn framed<T>(self, io: T) -> Framed<T, Self> where
T: AsyncRead + AsyncWrite,
[src]
T: AsyncRead + AsyncWrite,
impl<'a> Encoder<&'a FrameHeader> for FrameHeaderCodec
[src]
type Error = Error
The type of encoding errors. Read more
pub fn encode(
&mut self,
item: &'a FrameHeader,
dst: &mut BytesMut
) -> Result<()>
[src]
&mut self,
item: &'a FrameHeader,
dst: &mut BytesMut
) -> Result<()>
impl Encoder<FrameHeader> for FrameHeaderCodec
[src]
Auto Trait Implementations
impl RefUnwindSafe for FrameHeaderCodec
[src]
impl Send for FrameHeaderCodec
[src]
impl Sync for FrameHeaderCodec
[src]
impl Unpin for FrameHeaderCodec
[src]
impl UnwindSafe for FrameHeaderCodec
[src]
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
pub fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
V: MultiLane<T>,