Skip to content

Commit aa00620

Browse files
Add newly required bound due to rust-lang/rust#100046
1 parent 7fc9d9a commit aa00620

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/queries/secondary_index.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -485,7 +485,7 @@ where
485485
}
486486
}
487487

488-
impl<'a, K, T, S> KeySet<'a, K> for HashSet<T, S>
488+
impl<'a, K, T, S: 'a> KeySet<'a, K> for HashSet<T, S>
489489
where
490490
T: Clone + Borrow<K> + 'a,
491491
K: ToOwned<Owned = T> + ?Sized + 'a,

0 commit comments

Comments
 (0)