From 6643d52fc98c694dee09e1fd2fdd8001b890d845 Mon Sep 17 00:00:00 2001 From: avi Date: Sat, 17 Jun 2023 15:27:59 -0700 Subject: [PATCH] derive Clone --- aerospike-core/src/client.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/aerospike-core/src/client.rs b/aerospike-core/src/client.rs index f9e0751d..1bdec73a 100644 --- a/aerospike-core/src/client.rs +++ b/aerospike-core/src/client.rs @@ -52,6 +52,7 @@ use futures::AsyncReadExt; /// Each record may have multiple bins, unless the Aerospike server nodes are configured as /// "single-bin". In "multi-bin" mode, partial records may be written or read by specifying the /// relevant subset of bins. +#[derive(Clone)] pub struct Client { cluster: Arc, }