63
63
batch : Batch ,
64
64
}
65
65
66
- impl < ' cf , Key , Value > Debug for TypedColumnFamily < ' cf , Key , Value >
66
+ impl < Key , Value > Debug for TypedColumnFamily < ' _ , Key , Value >
67
67
where
68
68
Key : IntoDisk + FromDisk + Debug ,
69
69
Value : IntoDisk + FromDisk ,
80
80
}
81
81
}
82
82
83
- impl < ' cf , Key , Value > PartialEq for TypedColumnFamily < ' cf , Key , Value >
83
+ impl < Key , Value > PartialEq for TypedColumnFamily < ' _ , Key , Value >
84
84
where
85
85
Key : IntoDisk + FromDisk + Debug ,
86
86
Value : IntoDisk + FromDisk ,
90
90
}
91
91
}
92
92
93
- impl < ' cf , Key , Value > Eq for TypedColumnFamily < ' cf , Key , Value >
93
+ impl < Key , Value > Eq for TypedColumnFamily < ' _ , Key , Value >
94
94
where
95
95
Key : IntoDisk + FromDisk + Debug ,
96
96
Value : IntoDisk + FromDisk ,
@@ -243,7 +243,7 @@ where
243
243
}
244
244
}
245
245
246
- impl < ' cf , Key , Value > TypedColumnFamily < ' cf , Key , Value >
246
+ impl < Key , Value > TypedColumnFamily < ' _ , Key , Value >
247
247
where
248
248
Key : IntoDisk + FromDisk + Debug + Ord ,
249
249
Value : IntoDisk + FromDisk ,
@@ -259,7 +259,7 @@ where
259
259
}
260
260
}
261
261
262
- impl < ' cf , Key , Value > TypedColumnFamily < ' cf , Key , Value >
262
+ impl < Key , Value > TypedColumnFamily < ' _ , Key , Value >
263
263
where
264
264
Key : IntoDisk + FromDisk + Debug + Hash + Eq ,
265
265
Value : IntoDisk + FromDisk ,
@@ -275,7 +275,7 @@ where
275
275
}
276
276
}
277
277
278
- impl < ' cf , Key , Value , Batch > WriteTypedBatch < ' cf , Key , Value , Batch >
278
+ impl < Key , Value , Batch > WriteTypedBatch < ' _ , Key , Value , Batch >
279
279
where
280
280
Key : IntoDisk + FromDisk + Debug ,
281
281
Value : IntoDisk + FromDisk ,
@@ -312,7 +312,7 @@ where
312
312
}
313
313
314
314
// Writing a batch to the database requires an owned batch.
315
- impl < ' cf , Key , Value > WriteTypedBatch < ' cf , Key , Value , DiskWriteBatch >
315
+ impl < Key , Value > WriteTypedBatch < ' _ , Key , Value , DiskWriteBatch >
316
316
where
317
317
Key : IntoDisk + FromDisk + Debug ,
318
318
Value : IntoDisk + FromDisk ,
0 commit comments