From ef17e56b10062f954afac89a78f4fc3e85731571 Mon Sep 17 00:00:00 2001 From: SMassalski Date: Thu, 17 Oct 2024 16:20:44 +0200 Subject: [PATCH] Fix missing derive clone statement for Requestor --- asynchronix/src/ports/output.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/asynchronix/src/ports/output.rs b/asynchronix/src/ports/output.rs index 25aed9e..574f6bf 100644 --- a/asynchronix/src/ports/output.rs +++ b/asynchronix/src/ports/output.rs @@ -202,6 +202,7 @@ impl fmt::Debug for Output { /// When a `Requestor` is cloned, the information on connected ports remains /// shared and therefore all clones use and modify the same list of connected /// ports. +#[derive(Clone)] pub struct Requestor { broadcaster: CachedRwLock>, }