From 64ddd407ca904d3c89a0392757ecba5813969f64 Mon Sep 17 00:00:00 2001 From: Tobie Morgan Hitchcock Date: Sat, 21 May 2022 01:17:46 +0100 Subject: [PATCH] Ensure correct trait is used in function definitions --- lib/src/kvs/tx.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/src/kvs/tx.rs b/lib/src/kvs/tx.rs index cede5410..92c79df3 100644 --- a/lib/src/kvs/tx.rs +++ b/lib/src/kvs/tx.rs @@ -185,7 +185,7 @@ impl Transaction { pub async fn set(&mut self, key: K, val: V) -> Result<(), Error> where K: Into, - V: Into, + V: Into, { match self { #[cfg(feature = "kv-echodb")] @@ -210,7 +210,7 @@ impl Transaction { pub async fn put(&mut self, key: K, val: V) -> Result<(), Error> where K: Into, - V: Into, + V: Into, { match self { #[cfg(feature = "kv-echodb")]