(message: impl Into<String>)
| 330 | } |
| 331 | |
| 332 | pub(crate) fn config_error(message: impl Into<String>) -> TraceDecayError { |
| 333 | TraceDecayError::Config { |
| 334 | message: message.into(), |
| 335 | } |
| 336 | } |
| 337 | |
| 338 | /// Builds state and runs the dashboard server until `shutdown` resolves. |
| 339 | /// Binds `host:port` (`port` 0 lets the OS pick) and prints the URL on |
no outgoing calls
no test coverage detected