pub trait GenericClientBuilder<RB, C: GenericClient<RB>>: Send + Sync {
// Required method
fn build(self) -> Result<C, Error>;
}pub trait GenericClientBuilder<RB, C: GenericClient<RB>>: Send + Sync {
// Required method
fn build(self) -> Result<C, Error>;
}