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, and no 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
, Deque
, Heap
, Set
, Map
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]
All methods that are suffixed with _new
will create builders. Each builder is named appropriately.
```rust
use buildstructor::builder;
use std::error::Error;
struct Multi { simple: usize }
impl Multi {
fn new(simple: usize) -> Multi {
Self { simple }
}
fn trynew(simple: usize) -> Result
fn main() { let regular = Multi::builder().simple(2).build(); assert_eq!(regular.simple, 2);
let fallible = Multi::try_builder().simple(2).build().unwrap();
assert_eq!(fallible.simple, 2);
let option = Multi::maybe_builder().simple(2).build().unwrap();
assert_eq!(option.simple, 2);
}
```
Fields that are optional will also be optional in the builder. You should do defaulting in your constructor.
```rust use buildstructor::builder; struct MyStruct { param: usize }
impl MyStruct {
fn new(param: Option
fn main() { let mine = MyStruct::builder().param(2).build(); asserteq!(mine.param, 2); let mine = MyStruct::builder().andparam(Some(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
use buildstructor::builder;
struct MyStruct {
param: String
}
impl MyStruct {
fn new
fn main() { let mine = MyStruct::builder().param("Hi").build(); assert_eq!(mine.param, "Hi"); } ```
To create an async
builder just make your constructor async
.
```rust use buildstructor::builder; struct MyStruct { param: usize }
impl MyStruct { async fn new(param: usize) -> MyStruct { Self { param } } }
async fn main() { let mine = MyStruct::builder().param(2).build().await; assert_eq!(mine.param, 2); } ```
To create a fallible builder just make your constructor fallible using Result
.
```rust use buildstructor::builder; use std::error::Error; struct MyStruct { param: usize }
impl MyStruct {
fn new(param: usize) -> Result
fn main() { let mine = MyStruct::builder().param(2).build().unwrap(); assert_eq!(mine.param, 2); } ```
Collections and maps are given special treatment, the builder will add additional methods to build the collection one element at a time.
```rust
use buildstructor::builder;
struct MyStruct {
addresses: Vec
impl MyStruct {
fn new(addresses: Vec
fn main() { let mine = MyStruct::builder() .address("Amsterdam".tostring()) .address("Fakenham") .addresses(vec!["Norwich".tostring(), "Bristol".tostring()]) .build(); asserteq!(mine.addresses, vec!["Amsterdam".tostring(), "Fakenham".tostring(), "Norwich".tostring(), "Bristol".tostring()]); } ```
Collections are matched by type name:
| Type Name | Method used to insert | |-----------|-----------------------| | ...Buffer | push() | | ...Deque | push() | | ...Heap | push() | | ...Set | insert() | | ...Stack | push() | | ...Map | insert(, ) | | Vec | push() |
If your type does not conform to these patterns then you can use a type alias to trick buildstructor into giving the parameter special treatment.
Use the plural form in your constructor argument and buildstructor
will automatically try to figure out the singular form for individual entry. For isntance:
addresses
=> address
In the case that a singular form cannot be derived automatically the suffix _entry
will be used. For instance:
frodo
=> frodo_entry
Adding a singular entry will automatically perform an into conversion if: * the type is not a scalar. * the type has no generic paramaters. (this may be relaxed later) * the type is a generic parameter from the impl or constructor method.
This is useful for Strings, but also other types where you want to overload the singular build method. Create an enum that derives From for all the types you want to support and then use this type in your constructor.
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.