1个不稳定版本

0.0.1 2020年1月19日

#12#scrappy

每月 下载 49
7 个crate中使用(通过 scrappy

MIT 许可证

14KB
278

scrappy-web codegen模块

路由和作用域生成器

路由

属性

  • "path" - 为注册处理程序指定路径的原始字面量字符串。必填。
  • guard="function_name" - 使用 scrappy::guard::fn_guard 将函数注册为守卫

注意

函数名可以是任何将要可访问生成的代码的表达式(例如 my_guardmy_module::my_guard

示例

use scrappy::HttpResponse;
use scrappy_codegen::get;
use futures::{future, Future};

#[get("/test")]
async fn async_test() -> Result<HttpResponse, scrappy::Error> {
    Ok(HttpResponse::Ok().finish())
}

依赖项

~1.5MB
~35K SLoC