mirror of
https://github.com/meilisearch/MeiliSearch
synced 2024-11-11 15:38:55 +01:00
makes clippy happy
This commit is contained in:
parent
5bea1092fb
commit
791c5cd874
@ -25,10 +25,9 @@ impl Value {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
impl Into<Value> for serde_json::Value {
|
impl From<serde_json::Value> for Value {
|
||||||
fn into(self) -> Value {
|
fn from(value: serde_json::Value) -> Self {
|
||||||
serde_json::json!(null);
|
Value(value)
|
||||||
Value(self)
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user