actix_derive 0.3.0

Actor framework for Rust
Documentation

actix-derive Build Status crates.io

Actix is a rust actor framework.


Actix is licensed under the Apache-2.0 license.

Features

  • actix-derive adds support for Rust Custom Derive / Macros 1.1 to actix

Usage

#[macro_use] extern crate actix_derive;

use std::io::Error;

#[derive(Message)]
#[rtype(result="Result<usize, Error>")]
struct Sum(usize, usize);

fn main() {}

This code expands into following code:

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

struct Sum(usize, Error);

impl Message for Sum {
    type Result = Result<usize, Error>;
}

fn main() {}

License

This project is licensed under either of

at your option.