Macro factory_tuple
Source macro_rules! factory_tuple {
{ $($param:ident)* } => { ... };
}
Expand description
Implements [actix_web::Handler] for an AppMethod with the given number of arguments.
Based on [actix_web]’s implementation of [actix_web::Handler] for Fns.