1 2 3 4 5 6 7 8 9 10 11
//! Implementation of the abstractions around [WebSocket] transport. //! //! [WebSocket]: https://developer.mozilla.org/ru/docs/WebSockets mod client; #[doc(inline)] pub use self::client::{ ClientDisconnect, ClientState, RpcEvent, RpcEventHandler, RpcTransportFactory, WebSocketRpcClient, };