is_null

Function is_null 

Source
pub fn is_null() -> JsonPredicateMatcher<impl Fn(&Value) -> bool, &'static str, &'static str>
Expand description

Matches JSON null values.

ยงExamples

assert_that!(j!(null), json::is_null());
assert_that!(j!("value"), not(json::is_null()));