From 90c28f9c6ecd9404901baa55b91e18f696ce8cad Mon Sep 17 00:00:00 2001 From: Foosec <31885466+Foosec@users.noreply.github.com> Date: Wed, 29 Oct 2025 23:08:21 +0100 Subject: [PATCH] Add derive Clone to high_level::Event --- src/high_level.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/high_level.rs b/src/high_level.rs index a922a80..0052275 100644 --- a/src/high_level.rs +++ b/src/high_level.rs @@ -113,7 +113,7 @@ impl From for u32 { } } -#[derive(Debug)] +#[derive(Debug, Clone)] pub struct Event { pub fd: i32, pub path: String,