Builder for creating a component set with fluent API
| 54 | |
| 55 | /// Builder for creating a component set with fluent API |
| 56 | pub struct ComponentSetBuilder<N, E, S, M, B, Est, H, Mer, Mon, Sig> { |
| 57 | network: N, |
| 58 | executor: E, |
| 59 | strategy: S, |
| 60 | market: M, |
| 61 | broadcaster: B, |
| 62 | estimator: Est, |
| 63 | health: H, |
| 64 | merger: Mer, |
| 65 | monitoring: Mon, |
| 66 | signer: Sig, |
| 67 | } |
| 68 | |
| 69 | impl Default |
| 70 | for ComponentSetBuilder< |
nothing calls this directly
no outgoing calls
no test coverage detected