mirror of
https://github.com/actix/actix-web.git
synced 2024-12-21 23:56:35 +00:00
fix guide
This commit is contained in:
parent
d573cf2d97
commit
7eb310f8ce
1 changed files with 4 additions and 2 deletions
|
@ -24,11 +24,13 @@ impl Actor for DbExecutor {
|
|||
This is definition of our actor. Now we need to define *create user* message and response.
|
||||
|
||||
```rust,ignore
|
||||
#[derive(Message)]
|
||||
#[rtype(User, Error)]
|
||||
struct CreateUser {
|
||||
name: String,
|
||||
}
|
||||
|
||||
impl Message for CreateUser {
|
||||
type Result = Result<User, Error>;
|
||||
}
|
||||
```
|
||||
|
||||
We can send `CreateUser` message to `DbExecutor` actor, and as result we get
|
||||
|
|
Loading…
Reference in a new issue