pub fn is_null() -> JsonPredicateMatcher<impl Fn(&Value) -> bool, &'static str, &'static str>
Matches JSON null values.
assert_that!(j!(null), json::is_null()); assert_that!(j!("value"), not(json::is_null()));