Skip to main content

Builder

Trait Builder 

Source
pub trait Builder {
    type Output;

    // Required method
    fn build(&self) -> Self::Output;

    // Provided method
    fn build_in(&self, dest: &mut Self::Output) { ... }
}

Required Associated Types§

Required Methods§

Source

fn build(&self) -> Self::Output

Provided Methods§

Source

fn build_in(&self, dest: &mut Self::Output)

Implementors§