Builder Pattern
This project uses consuming-self builders with const fn:
#[must_use]pub const fn with_field(mut self, value: T) -> Self { self.field = value; self}Config::new()isconst fnand#[must_use].Defaultimpl delegates tonew().- Every builder method is
const fnand#[must_use].