(mut self, addr: SocketAddr)
| 590 | /// Create a new configuration with the given bind address. |
| 591 | #[must_use] |
| 592 | pub const fn with_bind_address(mut self, addr: SocketAddr) -> Self { |
| 593 | self.bind_address = addr; |
| 594 | self |
| 595 | } |
| 596 | |
| 597 | #[must_use] |
| 598 | pub const fn with_health_bind_address(mut self, addr: SocketAddr) -> Self { |
no outgoing calls