[go: up one dir, main page]

sonic-rs 0.1.3

Sonic-rs is a fast Rust JSON library based on SIMD
Documentation
1
2
3
4
5
6
7
8
9
mod index;
mod node;
mod value_trait;

pub use index::{Index, IndexMut};
pub use node::{
    dom_from_slice, dom_from_str, Array, ArrayMut, Document, Object, ObjectMut, Value, ValueMut,
};
pub use value_trait::{JsonType, JsonValue};