actix-derive
Actix is a rust actor framework.
- API Documentation (Development)
- API Documentation (Releases)
- Cargo package: actix
Actix is licensed under the Apache-2.0 license.
Features
actix-derive
adds support for Rust Custom Derive / Macros 1.1 toactix
Usage
extern crate actix_derive;
use Error;
;
This code expands into following code:
extern crate actix;
use Error;
use Message;
;
License
This project is licensed under either of
- Apache License, Version 2.0, (LICENSE-APACHE or http://www.apache.org/licenses/LICENSE-2.0)
- MIT license (LICENSE-MIT or http://opensource.org/licenses/MIT)
at your option.