Skip to content

Commit

Permalink
Merge pull request #29 from ffuugoo/patch-1
Browse files Browse the repository at this point in the history
Remove `T: Clone` bound from `IntoIterator` implementation
  • Loading branch information
jeromefroe authored Aug 1, 2024
2 parents 120b04a + 47120e8 commit 9f4495f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -274,7 +274,7 @@ impl<T> Iterator for HashRingIterator<T> {
}
}

impl<T: Clone> IntoIterator for HashRing<T> {
impl<T> IntoIterator for HashRing<T> {
type Item = T;

type IntoIter = HashRingIterator<T>;
Expand Down

0 comments on commit 9f4495f

Please sign in to comment.