если он обернут в "роут-макрос"?
use actix_web::get;
fn main() {}
#[get("/test")]
pub async fn test<X>() -> &'static str {
"test"
}
error[E0282]: type annotations needed
--> src/main.rs:6:14
|
6 | pub async fn test<X>() -> &'static str {
| ^^^^ cannot infer type of the type parameter `X` declared on the function `test`
|
help: consider specifying the generic argument
|
6 | pub async fn test::<X><X>() -> &'static str {
| +++++
а зачем тебе дженерик хэндлер?
Обсуждают сегодня