1 2 3 4 5 6 7 8
//! Protocol-level types: version negotiation, close codes, error codes, //! heartbeat, handshake. pub mod close; pub mod error_code; pub mod heartbeat; pub mod hello; pub mod version;