Trait Builder

Source
pub trait Builder<To> {
    // Required method
    fn build(self) -> To;
}
Expand description

Common trait for the two builders.

Required Methods§

Source

fn build(self) -> To

Implementors§