Please help, I got this serde not implemented for trait error when i am trying out odbc_iter example
let row = db.query::<ValueRow>("SELECT 'hello world', CAST(42 AS INTEGER), CAST(10000000 AS BIGINT)")
.expect("failed to run query").single().expect("failed to fetch row");
println!("{}", serde_json::to_string(&row).expect("failed to serialize"));
error[E0277]: the trait bound odbc_iter::value::Value: serde::ser::Serialize
is not satisfied
--> src\main.rs:94:42