pub trait Builder {
type Output;
// Required method
fn build(self) -> Self::Output;
}Expand description
A generic builder interface.
pub trait Builder {
type Output;
// Required method
fn build(self) -> Self::Output;
}A generic builder interface.