remove unnecessary ?Sized constraints

This commit is contained in:
Lennart
2024-09-29 12:47:13 +02:00
parent c956189ceb
commit 11e929a2de
3 changed files with 3 additions and 3 deletions

View File

@@ -47,7 +47,7 @@ struct PropertyupdateElement<T> {
operations: Vec<Operation<T>>,
}
pub async fn route_proppatch<A: CheckAuthentication, R: ResourceService + ?Sized>(
pub async fn route_proppatch<A: CheckAuthentication, R: ResourceService>(
path: Path<R::PathComponents>,
body: String,
req: HttpRequest,