former 2.43.0

A flexible implementation of the Builder pattern supporting nested builders and collection-specific subformers. Simplify the construction of complex objects.
Documentation
#![allow(clippy::used_underscore_binding, clippy::all, warnings, missing_docs)]
#![deny(missing_docs)]

#[ allow( unused_imports ) ]
use super::*;
#[ allow( unused_imports ) ]
use test_tools::a_id;

// Test re-enabled to verify proper fix
#[ derive( Debug, PartialEq, former::Former ) ]
// #[ derive( Debug, PartialEq, former::Former ) ] #[ debug ]
// #[ derive( Debug, PartialEq ) ] #[ debug ]
pub struct Struct1 {
  pub int_1: i32,
  string_1: String,
  int_optional_1: core::option::Option<i32>,
  string_optional_1: Option<String>,
}

// = begin_coercing of generated

// == end of generated

include!("./only_test/primitives.rs");