Skip to content

Commit

Permalink
Implement Clone for mio::event::Iter. (tokio-rs#687)
Browse files Browse the repository at this point in the history
  • Loading branch information
ahmedcharles authored and alexcrichton committed Aug 20, 2017
1 parent f1c59af commit 45b26e2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/poll.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1210,7 +1210,7 @@ pub struct Events {
///
/// [`Events`]: struct.Events.html
/// [`iter`]: struct.Events.html#method.iter
#[derive(Debug)]
#[derive(Debug, Clone)]
pub struct Iter<'a> {
inner: &'a Events,
pos: usize,
Expand Down

0 comments on commit 45b26e2

Please sign in to comment.