| Crates.io | tuple-into |
| lib.rs | tuple-into |
| version | 0.1.0 |
| created_at | 2025-02-28 04:50:50.613632+00 |
| updated_at | 2025-02-28 04:50:50.613632+00 |
| description | A trait providing a convenient way to convert tuples of convertible elements. |
| homepage | |
| repository | https://github.com/griwes/tuple-into |
| max_upload_size | |
| id | 1572449 |
| size | 2,853 |
A trait providing a convenient way to convert tuples of compatible elements.
use tuple_into::TupleInto;
fn main() {
let tuple: (String, String) = ("hello", "world").tuple_into();
println!("{tuple:?}"); // '("hello", "world")'
}