map-to-javascript-html 2.0.5

A library for serializing a map to JavaScript code in HTML usually for dynamically generating strings on web pages.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
mod b_tree_map;

#[cfg(feature = "std")]
mod hash_map;

#[cfg(feature = "serde_json")]
mod serde_json_map;

pub use b_tree_map::*;

#[cfg(feature = "std")]
pub use hash_map::*;

#[cfg(feature = "serde_json")]
pub use serde_json_map::*;