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(usize, Error)]

struct Sum(usize, usize);

fn main() {} ```

This code exapnds into following code:

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

struct Sum(usize, Error);

impl ResponseType for Sum { type Item = usize; type Error = Error; }

fn main() {} ```

Handler

Actix derive provide proc_macro attributes macro for nightly rust.

```rust

![feature(proc_macro)]

extern crate actix; extern crate actixderive; use actixderive::*;

[msg(usize)]

struct Sum {a: usize, b: usize}

struct SumActor;

[actor(Context<_>)]

impl SumActor {

#[simple(Sum)]
fn sum(&mut self, a: usize, b: usize) -> usize {
    a + b
}

}

fn main() {} ```

License

This project is licensed under either of

at your option.