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] [package]
name = "sonic-channel" name = "sonic-channel"
version = "1.0.0" version = "1.0.1"
authors = ["Dmitriy Pleshevskiy <dmitriy@ideascup.me>"] authors = ["Dmitriy Pleshevskiy <dmitriy@ideascup.me>"]
description = "Rust client for sonic search backend" description = "Rust client for sonic search backend"
categories = ["api-bindings"] categories = ["api-bindings"]

View file

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