[][src]Struct derive_builder_core::Initializer

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> Clone for Initializer<'a>[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl<'a> Debug for Initializer<'a>[src]

impl<'a> ToTokens for Initializer<'a>[src]

fn into_token_stream(self) -> TokenStream[src]

Convert self directly into a TokenStream object. Read more

Auto Trait Implementations

impl<'a> !Send for Initializer<'a>

impl<'a> !Sync for Initializer<'a>

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Spanned for T where
    T: ToTokens
[src]