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
//! ffi-safe types that aren't wrappers for other types.

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

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