I\'m hoping to be able to use .into() to convert a value in a context where type inference is impossible. This is typically when I want to convert a temporary v
.into()
You can simply annotate the type of the result by assigning it to a variable.
let b: i32 = a.into(); println!("{}", b);