Skip to content

Commit 1c38731

Browse files
committed
Compiling
1 parent 78b6fe2 commit 1c38731

File tree

3 files changed

+10
-1
lines changed

3 files changed

+10
-1
lines changed

Diff for: src/data/recipe/from/mod.rs

+9
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,11 @@
11
mod method;
22
pub use method::*;
3+
4+
use {super::Recipe, crate::Value};
5+
6+
impl<T: Into<Value>> From<T> for Recipe {
7+
fn from(value: T) -> Recipe {
8+
let value: Value = value.into();
9+
value.into()
10+
}
11+
}
File renamed without changes.

Diff for: tests/api/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
crate::util_macros::make_all!(api, [csv, cast_any, insert]);
1+
crate::util_macros::make_all!(api, [csv, cast_any, api_insert]);

0 commit comments

Comments
 (0)