Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
loongs-zhang committed Feb 28, 2025
1 parent 4340f8b commit 1d38188
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions monoio/src/driver/iocp/event.rs
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ impl Events {

impl<'a> IntoIterator for &'a Events {
type Item = &'a Event;
type IntoIter = Iter<'a>;
type IntoIter = Iter<'a, Event>;

fn into_iter(self) -> Self::IntoIter {
self.iter()
Expand All @@ -140,7 +140,7 @@ impl<'a> IntoIterator for &'a Events {

impl<'a> IntoIterator for &'a mut Events {
type Item = &'a mut Event;
type IntoIter = Iter<'a>;
type IntoIter = IterMut<'a, Event>;

fn into_iter(self) -> Self::IntoIter {
self.iter_mut()
Expand Down

0 comments on commit 1d38188

Please sign in to comment.