jsonb   ![Build Status] ![Latest Version] ![Crate Downloads]

jsonb is a jsonb implementation written in Rust. It provides a fast, lightweight, and easy-to-use API for working with jsonb data.

Features

JSONB value struct

``` rust // JSONB value

[derive(Clone, PartialEq, Eq)]

pub enum Value<'a> { Null, Bool(bool), String(Cow<'a, str>), Number(Number), Array(Vec>), Object(Object<'a>), } ```