1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
/*!
ffi-safe types that aren't wrappers for other types.
*/


mod constructor;
mod ignored_wrapper;
mod late_static_ref;
mod nul_str;
mod maybe_cmp;
mod move_ptr;
mod static_ref;
mod rref;
mod rmut;
pub mod version;
pub mod rsmallbox;


pub use self::{
    constructor::{Constructor,ConstructorOrValue},
    ignored_wrapper::CmpIgnored,
    static_ref::StaticRef,
    nul_str::NulStr,
    maybe_cmp::MaybeCmp,
    move_ptr::MovePtr,
    rref::RRef,
    rmut::RMut,
    rsmallbox::RSmallBox,
    late_static_ref::LateStaticRef,
    version::{VersionNumber,VersionStrings,ParseVersionError},
};