fproxy/lib.rs
1
2/// Traits and impl related to generating proxies.
3pub mod proxy;
4/// Conversions of types from rust to C to proxies and visa versa.
5pub mod convert;
6/// Module containing mappings for rust's std types.
7pub mod std;
8
9pub use fproxy_derive::*;
10pub use libloading;
11pub use delegate;
12pub use proxy::{FAllocated, FProxy, FOwned, FRef, FRefMut};
13pub use convert::{FProxyFrom, FAsProxy, FToC, FFromC};
14// Users should be able to `use fproxy::iter::...`
15pub use std::*;
16
17
18
19
20
21
22
23