rustler 0.2.0

Safe Rust wrappers for creating Erlang NIF functions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/*
 * While the nif_interface module should directly export unsafe nif helper functions,
 * this module should preform validation and make them (reasonably) safe and easy to
 * use from rust. This module should try to be as nonopinionated as possible, and
 * should try to stick as close as possible to the original C api.
 *
 * Making the apis nice to use from rust should be done in the root rustler crate.
 */

pub mod nif_interface;

pub mod tuple;
pub use self::tuple::{ get_tuple };

/*macro_rules! wrap_number {
    (
}*/