misc: add missed Clone to ObjDest

This commit is contained in:
Dmitriy Pleshevskiy 2022-07-18 15:48:38 +03:00
parent b6d33d881b
commit d4773750f1
Signed by: pleshevskiy
GPG Key ID: 1B59187B161C0215
2 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
[package]
name = "sonic-channel"
version = "1.0.0"
version = "1.0.1"
authors = ["Dmitriy Pleshevskiy <dmitriy@ideascup.me>"]
description = "Rust client for sonic search backend"
categories = ["api-bindings"]

View File

@ -1,5 +1,5 @@
/// Search data destination. Contains collection, bucket and object.
#[derive(Debug, PartialEq, Eq)]
#[derive(Debug, Clone, PartialEq, Eq)]
pub struct ObjDest(Dest, String);
impl ObjDest {