How do I resolve “implementation of serde::Deserialize is not general enough” with actix-web's Json type?

跟風遠走 提交于 2020-04-12 19:44:37

问题


I'm writing a server using actix-web:

use actix_web::{post, web, Responder};
use serde::Deserialize;

#[derive(Deserialize)]
struct UserModel<'a, 'b> {
    username: &'a str,
    password: &'b str,
}

#[post("/")]
pub fn register(user_model: web::Json<UserModel>) -> impl Responder {}

The compiler gives this error:

error: implementation of `user::_IMPL_DESERIALIZE_FOR_UserModel::_serde::Deserialize` is not general enough  
  --> src/user.rs:31:1  
   |  
31 | #[post("/")]  
   | ^^^^^^^^^^^^  
   |  
   = note: `user::UserModel<'_, '_>` must implement `user::_IMPL_DESERIALIZE_FOR_UserModel::_serde::Deserialize<'0>`, for any lifetime `'0`  
   = note: but `user::UserModel<'_, '_>` actually implements `user::_IMPL_DESERIALIZE_FOR_UserModel::_serde::Deserialize<'1>`, for some specific lifetime `'1`

How should I resolve this?


回答1:


From the actix-web documentation:

impl<T> FromRequest for Json<T>
where
    T: DeserializeOwned + 'static, 

It basically says you can only use owned, not borrowed, data with the Json type if you want actix-web to extract types from the request for you. Thus you have to use String here:

use actix_web::{post, web, Responder};
use serde::Deserialize;

#[derive(Deserialize)]
struct UserModel {
    username: String,
    password: String,
}

#[post("/")]
pub fn register(user_model: web::Json<UserModel>) -> impl Responder {
    unimplemented!()
}


来源:https://stackoverflow.com/questions/57976096/how-do-i-resolve-implementation-of-serdedeserialize-is-not-general-enough-wi

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!