Skip to content

Commit

Permalink
Fix missing derive clone statement for Requestor
Browse files Browse the repository at this point in the history
  • Loading branch information
SMassalski committed Oct 17, 2024
1 parent ef43f99 commit ef17e56
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions asynchronix/src/ports/output.rs
Original file line number Diff line number Diff line change
Expand Up @@ -202,6 +202,7 @@ impl<T: Clone + Send + 'static> fmt::Debug for Output<T> {
/// 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<T: Clone + Send + 'static, R: Send + 'static> {
broadcaster: CachedRwLock<QueryBroadcaster<T, R>>,
}
Expand Down

0 comments on commit ef17e56

Please sign in to comment.