Skip to content

Commit

Permalink
Make DebouncedEvent be Clone (#133)
Browse files Browse the repository at this point in the history
  • Loading branch information
cmyr authored and passcod committed Nov 22, 2017
1 parent b5672b5 commit 9956260
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 @@ -358,7 +358,7 @@ pub struct RawEvent {

unsafe impl Send for RawEvent {}

#[derive(Debug)]
#[derive(Debug, Clone)]
/// Event delivered when action occurs on a watched path in debounced mode
pub enum DebouncedEvent {
/// `NoticeWrite` is emitted immediately after the first write event for the path.
Expand Down

0 comments on commit 9956260

Please sign in to comment.