abi_stable 0.9.0

For doing Rust-to-Rust ffi,writing libraries loaded at program startup.
Documentation
/*!
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},
};