pub trait JsonApplicable {
// Required method
fn apply_json(&self, json: &mut JsonValue, key: &str) -> bool;
}Expand description
Trait for types that can be applied to a JSON object conditionally
pub trait JsonApplicable {
// Required method
fn apply_json(&self, json: &mut JsonValue, key: &str) -> bool;
}Trait for types that can be applied to a JSON object conditionally