[go: up one dir, main page]

sonic-rs 0.5.6

Sonic-rs is a fast Rust JSON library based on SIMD
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Imports the various traits about JSON. `use sonic_rs::prelude::*` to make the
//! various traits and methods imported if you need.

pub use crate::{
    index::Index,
    input::JsonInput,
    reader::{Read, Reader},
    serde::JsonNumberTrait,
    value::{JsonContainerTrait, JsonValueMutTrait, JsonValueTrait},
    writer::WriteExt,
};