//! 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; 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;