pub trait HasBuilder {
type Builder: Builder<Output = Self>;
// Required method
fn builder(&self) -> Self::Builder;
}pub trait HasBuilder {
type Builder: Builder<Output = Self>;
// Required method
fn builder(&self) -> Self::Builder;
}