1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
//! This module constructs a serde serializer (and deserializer) to convert Rust structures to (and from) Js types expected by js-of-ocaml.
//! js-of-ocaml expects arrays of values instead of objects, so a Rust structure like:
//!
//! ```ignore
//! { a: F, b: Vec<F>, c: SomeType }
//! ```
//!
//! must be converted to an array that looks like this:
//!
//! ```ignore
//! // notice the leading 0, which is an artifact of OCaml's memory layout and how js-of-ocaml is implemented.
//! [0, a, b, c]
//! ```
//! See the following example on how to use it:
//!
//! ```
//! #[derive(serde::Serialize, serde::Deserialize)]
//! struct Thing { a: usize, b: u32 }
//!
//! let serializer = crate::wasm_ocaml_serde::ser::Serializer::new();
//! let thing = Thing { a: 5, b: 6 };
//! let js_value = serde::Serialize::serialize(thing, &mut serializer).unwrap();
//! assert_eq!(format!("{}", js_value), "[0, 5, 6]");
//! ```

use wasm_bindgen::prelude::*;

pub mod de;
pub mod ser;

pub use serde_wasm_bindgen::Error;

pub type Result<T = JsValue> = core::result::Result<T, Error>;