aboutsummaryrefslogtreecommitdiff
path: root/src/internal/prelude.rs
blob: e2482062144e68fc38aec08d610294510b582284 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! These prelude re-exports are a set of exports that are commonly used from
//! within the library.
//!
//! These are not publicly re-exported to the end user, and must stay as a
//! private module.

pub type JsonMap = Map<String, Value>;

pub use error::{Error, Result};
pub use serde_json::{Map, Number, Value};
pub use std::result::Result as StdResult;

#[cfg(feature = "client")]
pub use client::ClientError;