Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add a toggle to deactivate the generation of the build() method to allow custom build() #37

Open
RustyNova016 opened this issue Jan 17, 2025 · 0 comments

Comments

@RustyNova016
Copy link

Currently, the builder autogenerate a build() method on all builders, which prevent having a custom build logic.
It would be nice to have a toggle to deactivate it, and letting us implement it ourself. Something like this:

#[derive(Builder)]
#[builder(no_build)]
struct MyType {
  integer: i32,
  string: String,
  optional: Option<String>,
}

impl MyTypeBuilder {
    pub fn build() -> Mytype {
        // Custom builder!
    }
}
```
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant