paperclip_actix

Attribute Macro delete

#[delete]
Expand description

Creates route handler with paperclip::actix::web::Resource. In order to control the output type and status codes the return value/response must implement the trait actix_web::Responder.

§Syntax

#[delete("path"[, attributes])]

§Attributes

  • "path" - Raw literal string with path for which to register handler.

§Example

/// use paperclip::actix::web::Json; /// use paperclip_macros::delete; /// #[delete(“/”)] /// async fn example() { /// }