Derive a highly configurable constructor for your struct
```rust use fancy_constructor::new;
struct MyStruct { foo: String, bar: u8, }
let a = MyStruct::new("#[derive(new)]".into(), 55); let b = MyStruct { foo: "#[derive(new)]".into(), bar: 55 }; assert_eq!(a, b); ```
Outputs: ```rust impl MyStruct { pub fn new(foo: String, bar: u8) -> Self { Self { foo, bar } } } ````
```rust
struct MyStruct
#[new(val("Bar".into()))] b: String,
#[new(clone)]
c: Arc
#[new(default)]
d: Vec
let we = Arc::new(Whatever::default());
let a = MyStruct::
Outputs:
```rust
impl
```rust
struct Foo(u8);
const FOO: Foo = Foo::new(128); assert_eq!(FOO, Foo(128)); ```
Outputs:
```rust impl Foo { const fn new(f1: u8) -> Self { Self(f1) } } ````
```rust
struct Foo { isbar: bool, #[new(val(if isbar { 100 } else { 5 }))] barness_level: u8, }
asserteq!(Foo::new(true).barnesslevel, 100); asserteq!(Foo::new(false).barnesslevel, 5); ```