From 49d25968cbf45b5e936508e6b38863e77c24f71a Mon Sep 17 00:00:00 2001 From: lumi Date: Mon, 22 May 2017 16:15:04 +0200 Subject: [PATCH] no need to clone that --- src/convert.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/convert.rs b/src/convert.rs index f3f2ae09..fb6fbfb0 100644 --- a/src/convert.rs +++ b/src/convert.rs @@ -90,7 +90,7 @@ pub trait IntoAttributeValue { impl IntoAttributeValue for String { fn into_attribute_value(self) -> Option { - Some(self.clone()) + Some(self) } }