Skip to content

Commit

Permalink
Add missing ?Sized
Browse files Browse the repository at this point in the history
  • Loading branch information
uklotzde committed Jan 4, 2024
1 parent 8c1d969 commit 5c3fdff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/server/service.rs
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ pub trait Service {

impl<D> Service for D
where
D: Deref,
D: Deref + ?Sized,
D::Target: Service,
{
type Request = <D::Target as Service>::Request;
Expand Down

0 comments on commit 5c3fdff

Please sign in to comment.