Derive a builder from a constructor!
Use this if you want a derived builder but with less annotation magic.
Add the dependency to your Cargo.toml
toml
[dependencies]
buildstructor = "*"
builder
macro.impl
containing a new
function. ```rust use buildstructor::builder;
pub struct MyStruct { sum: usize, }
impl MyStruct { fn new(a: usize, b: usize) -> MyStruct { Self { sum: a + b } } }
fn main() { let mine = MyStruct::builder().a(2).b(3).build(); assert_eq!(mine.sum, 5); } ```
The difference between this and other builder crates is that constructors are used to derive builders rather than structs. This results in a more natural fit with regular Rust code rather than relying on annotation magic to define behavior.
Advantages:
Option
param in your constructor and default as normal.async
constructors derives async
builders.Result
) derives fallible builders.Vec
, HashMap
, HashSet
, BTreeMap
, BTreeSet
support. Add single or multiple items.This crate is heavily inspired by the excellent typed-builder crate. It is a good alternative to this crate and well worth considering.
All of these recipes and more can be found in the examples directory
Just write your rust code as usual and annotate the constructor impl with [builder]
Fields that are optional will also be optional in the builder. You should do defaulting in your constructor.
```rust
impl MyStruct {
fn new(param: Option
fn main() { let mine = MyStruct::builder().simple(2).build(); asserteq!(mine.param, 2); let mine = MyStruct::builder().build(); asserteq!(mine.param, 3); } ```
You can use generics as usual in your constructor.
```rust
impl MyStruct {
fn new
fn main() { let mine = MyStruct::builder().simple("Hi").build(); assert_eq!(mine.param, "Hi"); } ```
To create an async
builder just make your constructor async
.
```rust
impl MyStruct { async fn new(param: usize) -> MyStruct { Self { param } } }
async fn main() { let mine = MyStruct::builder().simple(2).build().await; assert_eq!(mine.param, 2); } ```
To create a fallible builder just make your constructor fallible using Result
.
```rust
impl MyStruct {
fn new(param: Option
fn main() { let mine = MyStruct::builder().simple(2).build().unwrap(); assert_eq!(mine.param, 2); } ```
Vec
, HashMap
, HashSet
, BTreeMap
, BTreeSet
parameters are treated specially. Use the plural form in your constructor argument and buildstructor
will automatically try to figure out the singular form for individual entry.
In the case that a singular form cannot be derived automatically the suffix _entry
will be used.
```rust
impl MyStruct {
fn new(addresses: Vec
fn main() { let mine = MyStruct::builder() .address("Amsterdam") .address("Fakenham") .addresses(vec!["Norwich", "Bristol"]) .build(); assert_eq!(mine.simple, 2); } ```
There had to be some magic somewhere.
PRs welcome!
Apache License, Version 2.0 (LICENSE-APACHE or http://www.apache.org/licenses/LICENSE-2.0)
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be licensed as above, without any additional terms or conditions.