#content #schema #rocket #responder #empty #empty-response #okapi

rocket_empty

为Rocket提供204无内容的响应器。包含可选的schema定义。

2个版本

0.1.1 2023年1月18日
0.1.0 2023年1月18日

#1747 in 数据库接口

Download history • Rust 包仓库 52/week @ 2024-04-08 • Rust 包仓库 38/week @ 2024-04-15 • Rust 包仓库 46/week @ 2024-04-22 • Rust 包仓库 102/week @ 2024-04-29 • Rust 包仓库 54/week @ 2024-05-06 • Rust 包仓库 47/week @ 2024-05-13 • Rust 包仓库 48/week @ 2024-05-20 • Rust 包仓库 47/week @ 2024-05-27 • Rust 包仓库 51/week @ 2024-06-03 • Rust 包仓库 71/week @ 2024-06-10 • Rust 包仓库 66/week @ 2024-06-17 • Rust 包仓库 58/week @ 2024-06-24 • Rust 包仓库 44/week @ 2024-07-01 • Rust 包仓库 21/week @ 2024-07-08 • Rust 包仓库 41/week @ 2024-07-15 • Rust 包仓库 29/week @ 2024-07-22 • Rust 包仓库

140 每月下载量
用于 rocket_authifier

MIT 协议

4KB

rocket_empty

rocket_empty 提供一个单一的struct EmptyResponse,该struct实现了一个返回"204 No Content"的Responder。除此之外,它还实现了okapi的schema。

我在项目之间复制相同的struct和实现感到厌倦,所以这里是它。

使用方法

use rocket_empty::EmptyResponse;

#[openapi(tag = "Tagged")]
#[get("/test")]
pub async fn test() -> EmptyResponse {
    EmptyResponse
    // Responds with "204 No Content"
}

依赖关系

~15–46MB
~777K SLoC