pub type TargetU32<'a> = Target<'a, u32>;
pub enum TargetU32<'a> { One(&'a mut u32), Many(&'a mut [u32]), }