mirror of
https://github.com/actix/actix-web.git
synced 2024-11-25 11:01:14 +00:00
Remove clone implementation for Path
(#2639)
This commit is contained in:
parent
1b706b3069
commit
4c59a34513
1 changed files with 1 additions and 3 deletions
|
@ -53,9 +53,7 @@ use crate::{
|
|||
/// format!("Welcome {}!", info.name)
|
||||
/// }
|
||||
/// ```
|
||||
#[derive(
|
||||
Debug, Clone, PartialEq, Eq, PartialOrd, Ord, Deref, DerefMut, AsRef, Display, From,
|
||||
)]
|
||||
#[derive(Debug, PartialEq, Eq, PartialOrd, Ord, Deref, DerefMut, AsRef, Display, From)]
|
||||
pub struct Path<T>(T);
|
||||
|
||||
impl<T> Path<T> {
|
||||
|
|
Loading…
Reference in a new issue