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 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() {} ```
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.