Creating

let mytuple : (char, i32) = ('a', 90);

Fetching Values

let mytuple : (char, char) = ("fast", "slow")
println!(mytuple.0); // "fast"
println!(mytuple.1); // "slow"

Destructuring

let (a,b) = ('a', 17);