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);
struct Added(usize);
fn main() {} ```
This code expands into following code:
```rust extern crate actix; use std::io::Error; use actix::dev::MessageResponse; use actix::dev::ResponseChannel; use actix::Message;
struct Sum(usize, Error);
impl Message for Sum {
type Result = Result
struct Added(usize);
impl MessageResponse for Added
where
A: Actor,
M: Message
fn main() {} ```
This project is licensed under either of
at your option.