mirror of
https://github.com/meilisearch/MeiliSearch
synced 2025-07-04 20:37:15 +02:00
makes clippy happy
This commit is contained in:
parent
5bea1092fb
commit
791c5cd874
1 changed files with 3 additions and 4 deletions
|
@ -25,10 +25,9 @@ impl Value {
|
|||
}
|
||||
}
|
||||
|
||||
impl Into<Value> for serde_json::Value {
|
||||
fn into(self) -> Value {
|
||||
serde_json::json!(null);
|
||||
Value(self)
|
||||
impl From<serde_json::Value> for Value {
|
||||
fn from(value: serde_json::Value) -> Self {
|
||||
Value(value)
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue