1 2 3 4 5 6 7 8 9 10 11
//! Implementations of dynamically typed values. #[cfg(target_arch = "x86_64")] mod nanbox; #[cfg(not(target_arch = "x86_64"))] mod portable; #[cfg(target_arch = "x86_64")] pub(crate) use nanbox::ValueImpl; #[cfg(not(target_arch = "x86_64"))] pub(crate) use portable::ValueImpl;