http_type/websocket_frame/
type.rs

1use crate::*;
2
3/// An alias for `Option<(WebSocketFrame, usize)>`, representing a decoded WebSocket frame along with the number of bytes consumed.
4pub type WebsocketFrameWithLengthOption = Option<(WebSocketFrame, usize)>;