From 0cfc43ed58bcec9e26de5029472adbbf70791a33 Mon Sep 17 00:00:00 2001 From: Boog900 <54e72d8a-345f-4599-bd90-c6b9bc7d0ec5@aleeas.com> Date: Thu, 17 Oct 2024 21:20:51 +0100 Subject: [PATCH] derive clone --- p2p/p2p-core/src/client/connector.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/p2p/p2p-core/src/client/connector.rs b/p2p/p2p-core/src/client/connector.rs index abe7e137..121c1221 100644 --- a/p2p/p2p-core/src/client/connector.rs +++ b/p2p/p2p-core/src/client/connector.rs @@ -32,6 +32,7 @@ pub struct ConnectRequest { } /// The connector service, this service connects to peer and returns the [`Client`]. +#[derive(Clone)] pub struct Connector { handshaker: HandShaker, }