【问题标题】:associated type `Context` not found when implementing actix-web's Handler实现actix-web的处理程序时找不到关联类型`Context`
【发布时间】:2018-12-06 19:43:52
【问题描述】:

我有以下基于actix-web Database Integration sample 的代码。

extern crate actix;
extern crate actix_web;
extern crate serde_json;
#[macro_use]
extern crate serde_derive;
extern crate r2d2;
extern crate r2d2_mysql;

use actix::prelude::*;
use actix_web::{middleware::Logger, server, App, FutureResponse, HttpRequest, HttpResponse};

mod dbservices {

    use actix::prelude::*;
    use actix_web::dev::Handler;
    use model::DataDictionary;
    use r2d2::Pool;
    use r2d2_mysql::*;
    use std::io;

    pub struct MysqlConnection {
        db_pool: mysql::PooledConn,
    }

    impl Actor for MysqlConnection {
        type Context = SyncContext<Self>;
    }

    impl MysqlConnection {
        pub fn new(db_url: &str) -> MysqlConnection {
            unimplemented!();
        }
    }

    pub struct GetDD;
    impl Message for GetDD {
        type Result = io::Result<Vec<DataDictionary>>;
    }

    impl Handler<GetDD> for MysqlConnection {
        type Result = io::Result<Vec<DataDictionary>>;

        fn handle(&mut self, msg: GetDD, _: &mut Self::Context) -> Self::Result {
            unimplemented!();
        }
    }
}

mod model {
    #[derive(Debug, Clone, Serialize, Deserialize)]
    pub struct DataDictionary {
        id: i32,
        name: String,
    }
}

struct State {
    db: Addr<MysqlConnection>,
}

fn get_dd(req: HttpRequest<State>) -> FutureResponse<HttpResponse> {
    req.clone()
        .state()
        .db
        .send(GetDD)
        .from_err()
        .and_then(|result| Ok.json(result))
        .responder()
}

fn main() {
    std::env::set_var("RUST_LOG", "actix_web=debug,info");
    const db_url: str = "mysql://connstring";
    let addr = SyncArbiter::start(3, move || dbservices::MysqlConnection::new(db_url));

    server::new(|| {
        App::new()
            .middleware(Logger::default())
            .middleware(Logger::new("%a %{User-Agent}i"))
            .prefix("/api")
            .scope("/dd", |dp_scope| {
                dp_scope.resource("/", |r| r.h(dbservices::GetDD()))
            })
    }).bind("127.0.0.1:8088")
        .unwrap()
        .run();
}

编译时出现以下错误。我不确定我做错了什么:

error[E0220]: associated type `Context` not found for `Self`
  --> src/main.rs:43:50
   |
43 |         fn handle(&mut self, msg: GetDD, _: &mut Self::Context) -> Self::Result {
   |                                                  ^^^^^^^^^^^^^ associated type `Context` not found

这是我在 Cargo.toml 中的依赖项:

[dependencies]
actix-web = "0.6.14"
actix = "0.6.1"
chrono = { version = "0.4.2", features = ["serde"] }
serde = "1.0.60"
serde_derive = "1.0.60"
serde_json = "1.0.17"
log = "0.4.1"
env_logger ="0.5.10"
futures = "0.2.1"
r2d2 = "*"

[dependencies.r2d2_mysql]
git = "https://github.com/outersky/r2d2-mysql"
version="*"

【问题讨论】:

    标签: rust rust-actix


    【解决方案1】:

    您可以将Self::Context 替换为SyncContext&lt;Self&gt;

    【讨论】:

    • 为什么 OP 会收到此错误?为什么他们复制的示例使用了您建议他们不应该使用的语法?
    【解决方案2】:

    这实际上很奇怪,因为只有单个关联类型 Context,但出于某种原因,Rust 希望您指定具体关联类型:&lt;Self as Actor&gt;::Context,因为您只有单个 Context 类型,所以不需要它

    是否还有其他错误会阻止您的结构编译?

    【讨论】:

    • 不,这是我得到的唯一错误。当我指定 &lt;Self as Actor&gt;::Context 时,错误确实消失了
    【解决方案3】:

    创建一个minimal MCVE 几乎总能让问题更容易被发现:

    extern crate actix;
    extern crate actix_web;
    
    use actix::prelude::*;
    use actix_web::dev::Handler;
    use std::io;
    
    pub struct MysqlConnection;
    
    impl Actor for MysqlConnection {
        type Context = SyncContext<Self>;
    }
    
    pub struct DummyMessage;
    impl Message for DummyMessage {
        type Result = io::Result<String>;
    }
    
    impl Handler<DummyMessage> for MysqlConnection {
        type Result = io::Result<String>;
    
        fn handle(&mut self, _: DummyMessage, _: &mut Self::Context) -> Self::Result {
            unimplemented!();
        }
    }
    
    fn main() {}
    
    error[E0220]: associated type `Context` not found for `Self`
      --> src/main.rs:22:53
       |
    22 |     fn handle(&mut self, _: DummyMessage, _: &mut Self::Context) -> Self::Result {
       |                                                   ^^^^^^^^^^^^^ associated type `Context` not found
    

    问题 1 - 多个版本

    actix-web = "0.6.14"
    actix = "0.6.1"
    

    这带来了两个不同版本的actix:

    $ cargo tree -d
    
    actix v0.5.8
    └── actix-web v0.6.14
        └── repro v0.1.0 (file:///private/tmp/repro)
    
    actix v0.6.1
    └── repro v0.1.0 (file:///private/tmp/repro)
    

    选择一个,actix 0.5.8。

    另见:

    问题 2 — 错误的特征

    你带来actix_web::dev::Handler

    pub trait Handler<S>: 'static {
        type Result: Responder;
        fn handle(&mut self, req: HttpRequest<S>) -> Self::Result;
    }
    

    您正在实施actix::Handler

    pub trait Handler<M> 
    where
        Self: Actor,
        M: Message, 
    {
        type Result: MessageResponse<Self, M>;
        fn handle(&mut self, msg: M, ctx: &mut Self::Context) -> Self::Result;
    }
    

    actix::Handler 具有Actor 作为其超特征,这意味着它可以访问关联的类型Contextactix_web::dev::Handler 没有超特征,所以它不知道 Self::Context

    选择适当的特征并正确实施。

    【讨论】:

    • 谢谢,我对 rust 修复版本很陌生,这个特性让我克服了这个错误
    猜你喜欢
    • 1970-01-01
    • 2013-10-19
    • 2021-05-13
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2021-08-19
    相关资源
    最近更新 更多