(&self)
| 879 | |
| 880 | impl<T> Clone for BasePoolBuilder<T> { |
| 881 | fn clone(&self) -> Self { |
| 882 | Self { |
| 883 | pool_config_overrides: self.pool_config_overrides.clone(), |
| 884 | ordering: self.ordering.clone(), |
| 885 | max_inflight_delegated_slots: self.max_inflight_delegated_slots, |
| 886 | _pd: core::marker::PhantomData, |
| 887 | } |
| 888 | } |
| 889 | } |
| 890 | |
| 891 | impl<T> BasePoolBuilder<T> { |
no outgoing calls