//! Type-level information about the compilation target.
use crate*;
/// The pointer width, in bytes, of the target platform.
pub type PointerWidth = U1;
pub type PointerWidth = U2;
pub type PointerWidth = U4;
pub type PointerWidth = U8;
pub type PointerWidth = U16;