blob: 21009d4226deb6f55f34d31ce054c7dad2959862 (
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 serde_json::{Map, Number, Value};
pub use std::result::Result as StdResult;
pub use error::{Error, Result};
#[cfg(feature = "client")]
pub use client::ClientError;
|