misc: add missed Clone to ObjDest
This commit is contained in:
parent
b6d33d881b
commit
d4773750f1
2 changed files with 2 additions and 2 deletions
|
@ -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"]
|
||||||
|
|
|
@ -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 {
|
||||||
|
|
Loading…
Reference in a new issue