To access elements of a tuple directly, you can use the format .n to access the n-th element
let x = ("hello", 42, true);
assert_eq!(x.0, "hello");
assert_eq!(x.1, 42);
assert_eq!(x.2, true);
You can also partially move out of a tuple
let x = (String::from("hello&quo...