module::Former

Former - variation of builder pattern.

Try out from the repository

shell test git clone https://github.com/Wandalen/wTools cd wTools cd sample/rust/meta_implements_trivial cargo run

To add to your project

cargo add implements

Sample

``` rust sample test use former::Former;

[derive( Debug, PartialEq, Former )]

pub struct Command { int1 : i32, string1 : String, vec1 : Vec< String >, hashmapstrings1 : std::collections::HashMap< String, String >, intoptional1 : core::option::Option< i32 >, stringoptional_1 : Option< String >, }

fn main() {

let command = Command::former() .int1( 13 ) .string1( "Abcd".tostring() ) .vec1().push( "ghi" ).push( "klm" ).end() .hashmapstrings1().insert( "k1", "v1" ).insert( "k2", "v2" ).end() .stringoptional1( "dir1" ) .form(); dbg!( &command );

// < &command = Command { // < int1: 13, // < string1: "Abcd", // < vec1: [ // < "ghi", // < "klm", // < ], // < hashmapstrings1: { // < "k1": "v1", // < "k2": "v2", // < }, // < intoptional1: None, // < stringoptional_1: Some( // < "dir1", // < ), // < }

} ```