websocket_codec/
protocol.rs

1//! Holds types that define WebSocket data at a low level.
2//!
3//! See [RFC6455 "The WebSocket Protocol"](https://tools.ietf.org/html/rfc6455) for a detailed definition of the fields
4//! in the frame header and their relation to the overall WebSocket protocol.
5pub use crate::frame::{DataLength, FrameHeader, FrameHeaderCodec};