结构是

#[derive(Identifiable, Queryable, Debug)]
#[table_name = "users"]
pub struct QueryableUser {
    pub id: i32,
    pub username: String,
    pub password: String,
    pub sex: bool,
    pub profile: Option<String>,
    pub birth: chrono::NaiveDate,
}

当我尝试更新结构
diesel::update(&queryable_user).set(...);

它给了我这个错误
error[E0277]: the trait bound `user::QueryableUser: diesel::Identifiable` is not satisfied
  --> src\message_handler\set_profile.rs:36:13
   |
36 |             diesel::update(user).set(profile.eq(None));
   |             ^^^^^^^^^^^^^^ the trait `diesel::Identifiable` is not implemented for `user::QueryableUser`
   |
   = help: the following implementations were found:
             <&'ident user::QueryableUser as diesel::Identifiable>
   = note: required because of the requirements on the impl of `diesel::query_builder::IntoUpdateTarget` for `user::QueryableUser`
   = note: required by `diesel::update`

这真的很令人困惑,因为我在我的结构中派生了Identifiable

最佳答案

我忘了用diesel::update(user).set(profile.eq(None));借用用户

关于postgresql - 柴油(防 rust 库)不允许我发表更新声明,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/57747246/

10-10 22:48