//! This module contains a correct and complete implementation of [RFC6455](https://datatracker.ietf.org/doc/html/rfc6455).
//!//! Any extensions are currently not implemented.
#[cfg(any(feature ="client", feature ="server"))]pub(crate)useself::types::Role;pubuseself::{error::ProtocolError,stream::WebsocketStream,types::{CloseCode, Config, Limits, Message},};modcodec;moderror;modstream;modtypes;