Skip to main content

rust_wasm_websocket/
lib.rs

1// region: lmake_md_to_doc_comments include README.md A //!
2//! # rust_wasm_websocket
3//!
4//! **crate for wasm websocket**  
5//! ***[repo](https://github.com/LucianoBestia/rust_wasm_websocket); version: 0.5.5  date: 2021-01-15 authors: Luciano Bestia***  
6//!
7//! [![crates.io](https://meritbadge.herokuapp.com/rust_wasm_websocket)](https://crates.io/crates/rust_wasm_websocket)
8//! [![Documentation](https://docs.rs/rust_wasm_websocket/badge.svg)](https://docs.rs/rust_wasm_websocket/)
9//! [![crev reviews](https://web.crev.dev/rust-reviews/badge/crev_count/rust_wasm_websocket.svg)](https://web.crev.dev/rust-reviews/crate/rust_wasm_websocket/)
10//! [![RustActions](https://github.com/LucianoBestia/rust_wasm_websocket/workflows/rust/badge.svg)](https://github.com/LucianoBestia/rust_wasm_websocket/)
11//! [![latest doc](https://img.shields.io/badge/latest_docs-GitHub-orange.svg)](https://lucianobestia.github.io/rust_wasm_websocket/rust_wasm_websocket/index.html)
12//! [![Licence](https://img.shields.io/badge/license-MIT-blue.svg)](https://github.com/LucianoBestia/rust_wasm_websocket/blob/master/LICENSE)
13//!
14//! [![Lines in Rust code](https://img.shields.io/badge/Lines_in_Rust-236-green.svg)](https://github.com/LucianoBestia/rust_wasm_websocket/)
15//! [![Lines in Doc comments](https://img.shields.io/badge/Lines_in_Doc_comments-52-blue.svg)](https://github.com/LucianoBestia/rust_wasm_websocket/)
16//! [![Lines in Comments](https://img.shields.io/badge/Lines_in_comments-50-purple.svg)](https://github.com/LucianoBestia/rust_wasm_websocket/)
17//! [![Lines in examples](https://img.shields.io/badge/Lines_in_examples-0-yellow.svg)](https://github.com/LucianoBestia/rust_wasm_websocket/)
18//! [![Lines in tests](https://img.shields.io/badge/Lines_in_tests-0-orange.svg)](https://github.com/LucianoBestia/rust_wasm_websocket/)
19//!
20//! ## websocket
21//!
22//! The library contains the generic parts.  
23//! The specific implementation needs to implement the WebSocketTrait.  
24//!
25//! ## Used in projects
26//!
27//! <https://github.com/LucianoBestia/unforgettable7_game/>  
28//!
29//! ## cargo crev reviews and advisory
30//!
31//! It is recommended to always use [cargo-crev](https://github.com/crev-dev/cargo-crev)  
32//! to verify the trustworthiness of each of your dependencies.  
33//! Please, spread this info.  
34//! On the web use this url to read crate reviews. Example:  
35//! <https://web.crev.dev/rust-reviews/crate/num-traits/>  
36//!
37// endregion: lmake_md_to_doc_comments include README.md A //!
38
39pub mod websocket_mod;