From 5142486c342cf340a9b33949b2e4f65e218a4f04 Mon Sep 17 00:00:00 2001 From: Ibraheem Ahmed Date: Wed, 9 Feb 2022 08:38:48 -0500 Subject: [PATCH] remove clone implementation for `Path` --- actix-web/src/types/path.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/actix-web/src/types/path.rs b/actix-web/src/types/path.rs index 869269d09..dde38219b 100644 --- a/actix-web/src/types/path.rs +++ b/actix-web/src/types/path.rs @@ -54,7 +54,7 @@ use crate::{ /// } /// ``` #[derive( - Debug, Clone, PartialEq, Eq, PartialOrd, Ord, Deref, DerefMut, AsRef, Display, From, + Debug, PartialEq, Eq, PartialOrd, Ord, Deref, DerefMut, AsRef, Display, From, )] pub struct Path(T);