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, pub bindings: Bindings, }
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
Whether 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.
bindings: Bindings
Bindings to libstd or libcore.
Trait Implementations
impl<'a> Debug for Initializer<'a>
[src]
impl<'a> Debug for Initializer<'a>
fn fmt(&self, __arg_0: &mut Formatter) -> Result
[src]
fn fmt(&self, __arg_0: &mut Formatter) -> Result
Formats the value using the given formatter. Read more
impl<'a> Clone for Initializer<'a>
[src]
impl<'a> Clone for Initializer<'a>
fn clone(&self) -> 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[src]
fn clone_from(&mut self, source: &Self)
1.0.0
[src]Performs copy-assignment from source
. Read more
impl<'a> ToTokens for Initializer<'a>
[src]
impl<'a> ToTokens for Initializer<'a>
Auto Trait Implementations
impl<'a> Send for Initializer<'a>
impl<'a> Send for Initializer<'a>
impl<'a> Sync for Initializer<'a>
impl<'a> Sync for Initializer<'a>