Actix is a rust actor framework.
Actix is licensed under the Apache-2.0 license.
actix-derive
adds support for Rust Custom Derive / Macros 1.1 to actix
```rust
use std::io::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() {} ```
Actix derive provide proc_macro attributes macro for nightly rust.
```rust
extern crate actix; extern crate actixderive; use actixderive::*;
struct Sum {a: usize, b: usize}
struct SumActor;
impl SumActor {
#[simple(Sum)]
fn sum(&mut self, a: usize, b: usize) -> usize {
a + b
}
}
fn main() {} ```
This project is licensed under either of
at your option.