Trait rsgenetic::sim::Builder [] [src]

pub trait Builder<T: ?Sized> {
    fn build(self) -> T where T: Sized;
}

A Builder can create new instances of an object. For this library, only Simulation objects use this Builder.

Required Methods

fn build(self) -> T where T: Sized

Return the result.

Implementors