pub trait Builder<To> { // Required method fn build(self) -> To; }
Common trait for the two builders.