pub fn try_run_with_parsed_fast(
parsed: ParsedCli,
) -> Result<CliResult<()>, Box<ParsedCli>>Expand description
Run startup-sensitive commands before constructing the async runtime.
cass health --json is documented as a <50ms fast-readiness surface. Even
the current-thread runtime setup is visible in subprocess latency tests, so
keep this command on a synchronous path and leave the general async runner
for commands that actually need it.