Former - variation of builder pattern.
``` rust sample test use former::Former;
pub struct Structure1 { 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 command1 = Structure1::former() .int1( 13 ) .string1( "Abcd".tostring() ) .vec1().push( "ghi" ).push( "klm" ).end() .hashmapstrings1().insert( "k1", "v1" ).insert( "k2", "v2" ).end() .stringoptional1( "dir1" ) .form(); dbg!( &command1 );
// < &command1 = Structure1 { // < int1: 13, // < string1: "Abcd", // < vec1: [ // < "ghi", // < "klm", // < ], // < hashmapstrings1: { // < "k1": "v1", // < "k2": "v2", // < }, // < intoptional1: None, // < stringoptional_1: Some( // < "dir1", // < ), // < }
} ```
cargo add implements
shell test
git clone https://github.com/Wandalen/wTools
cd wTools
cd sample/rust/implements_trivial
cargo run