Attribute Macro head
#[head]
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
#[head("path"[, attributes])]
§Attributes
"path"
- Raw literal string with path for which to register handler.
§Example
/// use paperclip::actix::web::Json; /// use paperclip_macros::head; /// #[head(“/”)] /// async fn example() { /// }