pub trait Builder {
    type Built;

    fn build(&self) -> Result<Self::Built, ConfigBuildError>;
}
Expand description

A type that can be built from a builder via a build method

Required Associated Types

The type that this builder constructs

Required Methods

Build into a Built

Often shadows an inherent build method

Implementors