linux_rust_bindings/
types.rs

1#[cfg(target_arch = "aarch64")]
2pub mod types_arm64;
3#[cfg(target_arch = "aarch64")]
4pub use types_arm64::*;
5#[cfg(target_arch = "x86_64")]
6pub mod types_x86;
7#[cfg(target_arch = "x86_64")]
8pub use types_x86::*;