Struct derive_builder_core::Initializer
[−]
[src]
pub struct Initializer<'a> { pub field_ident: &'a Ident, pub setter_enabled: bool, pub builder_pattern: BuilderPattern, pub default_value: Option<Block>, pub use_default_struct: bool, }
Initializer for the target struct fields, implementing quote::ToTokens
.
Lives in the body of BuildMethod
.
Examples
Will expand to something like the following (depending on settings):
foo: match self.foo { Some(value) => value, None => { 42 }, },
Fields
field_ident: &'a Ident
Name of the target field.
setter_enabled: bool
Wether the builder implements a setter for this field.
builder_pattern: BuilderPattern
How the build method takes and returns self
(e.g. mutably).
default_value: Option<Block>
Default value for the target field.
This takes precedence over a default struct identifier.
use_default_struct: bool
Whether the build_method defines a default struct.
Trait Implementations
impl<'a> Debug for Initializer<'a>
[src]
impl<'a> Clone for Initializer<'a>
[src]
fn clone(&self) -> Initializer<'a>
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0
Performs copy-assignment from source
. Read more