Struple ======= [![Crate](https://img.shields.io/crates/v/struple.svg)](https://crates.io/crates/struple) [![Docs](https://docs.rs/struple/badge.svg)](https://docs.rs/struple) Derive a trait for tuple <-> struct conversion for your own struct. ## Basic example ```rust use struple::Struple #[derive(Struple)] struct Foo(&'static str, u64, f32); fn main() { let string = "hello"; let int = 3u64; let float = 0.5f32; let foo = Foo::from_tuple((string, int, float)); let (string, int, float) = foo.into_tuple(); } ``` ## Use cases The main reason as to why I made this crate is because of [nom](https://github.com/Geal/nom) and it's [tuple parser combinator](https://docs.rs/nom/5/nom/sequence/fn.tuple.html). This combinator allows easy chaining of serveral parsers in sequence but has the downside that you gotta destructure the tuple manually to put the data into the corresponding struct. This is cumbersome and bloats the code(at least in my opinion). With this one can just derive a tuple constructor for the struct and pass that constructor to the map function to map the tuple to the struct. It even allows to create a new combinator just for this: ```rust pub fn struple(l: List) -> impl Fn(I) -> nom::IResult where I: Clone, O1: struple::GenericTuple, O2: struple::Struple, E: nom::error::ParseError, List: nom::sequence::Tuple, { map(tuple(l), struple::Struple::from_tuple) } struct Vector3 { x: f32, y: f32, z: f32 } // with struple let (i, vec): (_, Vector3) = struple((le_f32, le_f32, le_f32))?; // without struple let (i, vec) = map( tuple((le_f32, le_f32, le_f32)), |(x, y, z)| Vector3 { x, y, z} )?; ``` #### License Licensed under either of Apache License, Version 2.0 or MIT license at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in this crate by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.