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) } }