pub trait ToJsonValue {
// Required method
fn to_json_value(&self) -> JsonValue;
}Expand description
A trait defines as the format to get data from the instance.
pub trait ToJsonValue {
// Required method
fn to_json_value(&self) -> JsonValue;
}A trait defines as the format to get data from the instance.