Skip to content

Commit 28398ef

Browse files
committed
rename generics
1 parent 60f1736 commit 28398ef

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

libsql-wal/src/wal.rs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,9 @@ impl<IO: Io, S> Clone for LibsqlWalManager<IO, S> {
2929
}
3030
}
3131

32-
impl<FS: Io, S> LibsqlWalManager<FS, S> {
32+
impl<IO: Io, S> LibsqlWalManager<IO, S> {
3333
pub fn new(
34-
registry: Arc<WalRegistry<FS, S>>,
34+
registry: Arc<WalRegistry<IO, S>>,
3535
namespace_resolver: Arc<dyn NamespaceResolver>,
3636
) -> Self {
3737
Self {
@@ -42,10 +42,10 @@ impl<FS: Io, S> LibsqlWalManager<FS, S> {
4242
}
4343
}
4444

45-
pub struct LibsqlWal<FS: Io> {
45+
pub struct LibsqlWal<IO: Io> {
4646
last_read_frame_no: Option<u64>,
47-
tx: Option<Transaction<FS::File>>,
48-
shared: Arc<SharedWal<FS>>,
47+
tx: Option<Transaction<IO::File>>,
48+
shared: Arc<SharedWal<IO>>,
4949
conn_id: u64,
5050
}
5151

0 commit comments

Comments
 (0)