mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-04 21:37:58 +03:00
Migrate ntex to async fn in trait
This commit is contained in:
parent
2e12cc6edf
commit
4950eb4167
57 changed files with 576 additions and 932 deletions
|
@ -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>(())
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue