One way I know is to provide the type annotations in Rust is by declaring an intermediate variable so the compiler knows the return type:
use std::num::Int l
Like so:
fn main() { use std::num::Int; println!("Max usize: {}", <usize as Int>::max_value()); }