actix-derive Build Status crates.io

Actix is a rust actor framework.


Actix is licensed under the Apache-2.0 license.

Features

Usage

```rust

[macrouse] extern crate actixderive;

use std::io::Error;

[derive(Message)]

[rtype(result="Result")]

struct Sum(usize, usize);

fn main() {} ```

This code expands into following code:

```rust extern crate actix; use std::io::Error; use actix::Message;

struct Sum(usize, Error);

impl Message for Sum { type Result = Result; }

fn main() {} ```

License

This project is licensed under either of

at your option.