pub fn is_boolean() -> JsonPredicateMatcher<impl Fn(&Value) -> bool, &'static str, &'static str>
Matches JSON boolean values.
assert_that!(j!(true), json::is_boolean()); assert_that!(j!(0), not(json::is_boolean()));