Migrate ntex to async fn in trait

This commit is contained in:
Nikolay Kim 2024-01-07 06:43:37 +06:00
parent 2e12cc6edf
commit 4950eb4167
57 changed files with 576 additions and 932 deletions

View file

@ -170,11 +170,7 @@ mod tests {
type Response = ();
type Error = SrvError;
async fn call<'a>(
&'a self,
_: (),
_: ServiceCtx<'a, Self>,
) -> Result<(), SrvError> {
async fn call(&self, _: (), _: ServiceCtx<'_, Self>) -> Result<(), SrvError> {
crate::time::sleep(self.0).await;
Ok::<_, SrvError>(())
}