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
Download history 229/week @ 2024-09-22 160/week @ 2024-09-29 8/week @ 2024-10-06

397 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

~15–47MB
~792K SLoC