mirror of
https://github.com/fafhrd91/actix-net
synced 2025-09-02 07:16:37 +02:00
remove unneeded phantom data
This commit is contained in:
@@ -7,7 +7,7 @@ use {IntoNewService, NewService, Service};
|
||||
pub struct Apply<T, F, R, Req> {
|
||||
service: T,
|
||||
f: F,
|
||||
r: PhantomData<Fn(Req) -> R>,
|
||||
r: PhantomData<(Req, R)>,
|
||||
}
|
||||
|
||||
impl<T, F, R, Req> Apply<T, F, R, Req>
|
||||
|
Reference in New Issue
Block a user