Skip to content

Commit

Permalink
chore(core): remove 'static bounds on F
Browse files Browse the repository at this point in the history
  • Loading branch information
fundon committed Jan 1, 2024
1 parent 912ac54 commit 3e0569f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion viz-core/src/handler.rs
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ impl<F, I, Fut, O> Handler<I> for F
where
I: Send + 'static,
F: Fn(I) -> Fut + ?Sized + Clone + Send + Sync + 'static,
Fut: ::core::future::Future<Output = O> + Send + 'static,
Fut: ::core::future::Future<Output = O> + Send,
{
type Output = Fut::Output;

Expand Down

0 comments on commit 3e0569f

Please sign in to comment.