1//! Types with stable memory layouts 2//! 3//! Internal use only; here be dragons! 4 5#![allow(unsafe_code)] 6 7pub mod stable_instruction; 8pub mod stable_rc; 9pub mod stable_ref_cell; 10pub mod stable_slice; 11pub mod stable_vec;