Sha256: 6dbd9e0b1b89fecb9faac5df6edfc87e24607e9099136aa831f3f056b14e22db
Contents?: true
Size: 340 Bytes
Versions: 15
Compression:
Stored size: 340 Bytes
Contents
/*! A module with low-level architecture dependent routines. These routines are useful as primitives for tasks not covered by the higher level crate API. */ pub mod all; pub(crate) mod generic; #[cfg(target_arch = "aarch64")] pub mod aarch64; #[cfg(target_arch = "wasm32")] pub mod wasm32; #[cfg(target_arch = "x86_64")] pub mod x86_64;
Version data entries
15 entries across 15 versions & 1 rubygems