1 2 3 4 5 6
use tuple_into::TupleInto; fn main() { let tuple: (String, String) = ("hello", "world").tuple_into(); println!("{tuple:?}"); // '("hello", "world")' }