#rocket #content #testing #rocket-no-content #empty-response

rocket-no-content

Provides a 204 No Content responder for Rocket. Includes optional schema definition.

5 releases

0.1.4 Sep 29, 2024
0.1.3 Sep 22, 2024
0.1.2 Sep 22, 2024
0.1.1 Sep 22, 2024
0.1.0 Sep 22, 2024

#1356 in HTTP server

Download history 9/week @ 2025-02-08 5/week @ 2025-02-15

248 downloads per month

MIT license

4KB

rocket-no-content

rocket-no-content provides a singular struct EmptyResponse which has a Responder implementation that returns "204 No Content". In addition to this, it also implements a schema for okapi.

I got tired of copying the same struct and implementation between projects, so here it is.

Usage

use rocket-no-content::EmptyResponse;

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

Dependencies

~16–47MB
~778K SLoC