We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3a9e656 commit 9eacf17Copy full SHA for 9eacf17
1 file changed
src/lib.rs
@@ -118,6 +118,7 @@ impl std::convert::From<f64> for Value {
118
impl std::convert::From<Value> for serde_json::Value {
119
fn from(v: Value) -> Self {
120
match v {
121
+ Value::Eid(v) => serde_json::Value::String(v.to_string()),
122
Value::Aid(v) => serde_json::Value::String(v),
123
Value::String(v) => serde_json::Value::String(v),
124
Value::Bool(v) => serde_json::Value::Bool(v),
0 commit comments