expect_json/
lib.rs

1#![forbid(unsafe_code)]
2#![cfg_attr(docsrs, feature(doc_cfg, doc_auto_cfg))]
3#![allow(clippy::module_inception)]
4
5pub(crate) mod internals;
6
7pub mod expect;
8pub mod expect_core;
9
10mod expect_json_error;
11pub use self::expect_json_error::*;
12
13mod expect_json_eq;
14pub use self::expect_json_eq::*;
15
16mod json_integer;
17pub use self::json_integer::*;
18
19mod json_type;
20pub use self::json_type::*;
21
22#[doc(hidden)]
23pub mod __private;