actix web async await:提供带有asyncawait支持的Actix预览 源码
Actix Web异步/等待预览 此板条箱提供了具有异步/等待支持的Actix预览。 用法 要使用此板条箱,您需要从Rust 2018版板条箱开始。 将此添加到您的Cargo.toml: # In the `[package]` section edition = " 2018 " # In the `[dependencies]` section actix-web-async-await = " 0.1.0 " 然后,开始。这是的,另外它还以异步方式将请求延迟2秒。 一般的想法是将您的async fn处理程序包装在compat 。有接受多个参数的路由的compat2 , compat3等。 #![feature(await_macro, futures_api, async_await)] use actix_web :: {http, server, App, Path , Re
用户评论