isx 0.1.6

Traits for checking certain conditions of values
Documentation
1
2
3
4
5
6
7
use super::IsDefault;

impl IsDefault for serde_json::Value {
    fn is_default(&self) -> bool {
        matches!(self, serde_json::Value::Null)
    }
}