Function brontes::runner::run_command_until_exit

source ยท
pub fn run_command_until_exit<F, E>(
    metrics_port: Option<u16>,
    shutdown_time: Duration,
    command: impl FnOnce(CliContext) -> F,
) -> Result<(), E>
where F: Future<Output = Result<(), E>>, E: Send + Sync + From<Error> + From<PanickedTaskError> + 'static,