binder-rust 0.1.2

An implementatoin of Android Binder API for rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
#[macro_use]
extern crate bitflags;
#[macro_use]
extern crate num_derive;

mod binder;
pub use binder::*;

mod parcel;
pub use parcel::*;

mod service;
pub use service::*;