@@ -96,7 +96,7 @@ pub trait Handler<'a>: Sized {
96
96
/// The type of Future this Handler will return
97
97
type Fut : Future < Output = Result < Self :: Response , Self :: Error > > + ' a ;
98
98
/// Function used to execute handler behavior
99
- fn call ( & self , event : Request , context : Context ) -> Self :: Fut ;
99
+ fn call ( & mut self , event : Request , context : Context ) -> Self :: Fut ;
100
100
}
101
101
102
102
/// Adapts a [`Handler`](trait.Handler.html) to the `lambda_runtime::run` interface
@@ -117,7 +117,7 @@ where
117
117
type Response = R ;
118
118
type Error = Error ;
119
119
type Fut = Fut ;
120
- fn call ( & self , event : Request , context : Context ) -> Self :: Fut {
120
+ fn call ( & mut self , event : Request , context : Context ) -> Self :: Fut {
121
121
( self ) ( event, context)
122
122
}
123
123
}
@@ -159,7 +159,7 @@ impl<'a, H: Handler<'a>> Handler<'a> for Adapter<'a, H> {
159
159
type Response = H :: Response ;
160
160
type Error = H :: Error ;
161
161
type Fut = H :: Fut ;
162
- fn call ( & self , event : Request , context : Context ) -> Self :: Fut {
162
+ fn call ( & mut self , event : Request , context : Context ) -> Self :: Fut {
163
163
self . handler . call ( event, context)
164
164
}
165
165
}
@@ -168,7 +168,7 @@ impl<'a, H: Handler<'a>> LambdaHandler<LambdaRequest<'a>, LambdaResponse> for Ad
168
168
type Error = H :: Error ;
169
169
type Fut = TransformResponse < ' a , H :: Response , Self :: Error > ;
170
170
171
- fn call ( & self , event : LambdaRequest < ' _ > , context : Context ) -> Self :: Fut {
171
+ fn call ( & mut self , event : LambdaRequest < ' _ > , context : Context ) -> Self :: Fut {
172
172
let request_origin = event. request_origin ( ) ;
173
173
let fut = Box :: pin ( self . handler . call ( event. into ( ) , context) ) ;
174
174
TransformResponse { request_origin, fut }
0 commit comments