1 2 3 4 5 6 7 8 9 10 11 12
extern crate target_lexicon; use target_lexicon::HOST; fn main() { println!( "{}", HOST.pointer_width() .expect("architecture should be known") .bytes() ); }