stores: Switch from dyn to impl and implement Sized

This commit is contained in:
Lennart
2025-01-15 17:21:01 +01:00
parent 751c2d1ce7
commit 6d78a3936f
28 changed files with 55 additions and 72 deletions

View File

@@ -41,7 +41,7 @@ struct MkcalendarRequest {
}
#[instrument(parent = root_span.id(), skip(store, root_span))]
pub async fn route_mkcalendar<C: CalendarStore + ?Sized>(
pub async fn route_mkcalendar<C: CalendarStore>(
path: Path<(String, String)>,
body: String,
user: User,