1
0
mirror of https://github.com/actix/actix-extras.git synced 2025-07-31 07:23:57 +02:00

Merge branch 'master' of github.com:actix/actix-web

This commit is contained in:
Nikolay Kim
2018-03-06 00:43:34 -08:00

View File

@@ -12,7 +12,7 @@ We have to define sync actor and connection that this actor will use. Same appro
could be used for other databases.
```rust,ignore
use actix::prelude::*;*
use actix::prelude::*;
struct DbExecutor(SqliteConnection);
@@ -36,7 +36,7 @@ We can send `CreateUser` message to `DbExecutor` actor, and as result we get
```rust,ignore
impl Handler<CreateUser> for DbExecutor {
type Result = Result<User, Error>
type Result = Result<User, Error>;
fn handle(&mut self, msg: CreateUser, _: &mut Self::Context) -> Self::Result
{