Skip to content

Commit 4e50c14

Browse files
committed
f Newlines
1 parent a3e9fed commit 4e50c14

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/io/sqlite_store/mod.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,7 @@ impl KVStore for SqliteStore {
8181
})
8282
})
8383
}
84+
8485
fn write(
8586
&self, primary_namespace: &str, secondary_namespace: &str, key: &str, buf: Vec<u8>,
8687
) -> Pin<Box<dyn Future<Output = Result<(), io::Error>> + Send>> {
@@ -98,6 +99,7 @@ impl KVStore for SqliteStore {
9899
})
99100
})
100101
}
102+
101103
fn remove(
102104
&self, primary_namespace: &str, secondary_namespace: &str, key: &str, lazy: bool,
103105
) -> Pin<Box<dyn Future<Output = Result<(), io::Error>> + Send>> {
@@ -115,6 +117,7 @@ impl KVStore for SqliteStore {
115117
})
116118
})
117119
}
120+
118121
fn list(
119122
&self, primary_namespace: &str, secondary_namespace: &str,
120123
) -> Pin<Box<dyn Future<Output = Result<Vec<String>, io::Error>> + Send>> {

0 commit comments

Comments
 (0)