From 15188b7c7fc6774301a16923127df596486cc913 Mon Sep 17 00:00:00 2001 From: Sean McArthur Date: Mon, 4 Jun 2018 11:35:38 -0700 Subject: [PATCH] feat(client): implement `Clone` for `Destination` --- src/client/connect.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/client/connect.rs b/src/client/connect.rs index 1e7b8cf3e5..fdcc84a530 100644 --- a/src/client/connect.rs +++ b/src/client/connect.rs @@ -30,7 +30,7 @@ pub trait Connect: Send + Sync { } /// A set of properties to describe where and how to try to connect. -#[derive(Debug)] +#[derive(Clone, Debug)] pub struct Destination { //pub(super) alpn: Alpn, pub(super) uri: Uri,