tuple-into 0.1.0

A trait providing a convenient way to convert tuples of convertible elements.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
# tuple-into

A trait providing a convenient way to convert tuples of compatible elements.

```rust
use tuple_into::TupleInto;

fn main() {
    let tuple: (String, String) = ("hello", "world").tuple_into();
    println!("{tuple:?}"); // '("hello", "world")'
}
```