Function run
Source pub fn run() -> Result<(), Error>
Expand description
Run the FluxBench CLI harness.
Call this from your benchmark binary’s main():
ⓘfn main() {
fluxbench::run().unwrap();
}
Run the FluxBench CLI with the given arguments.
This is the main entry point for benchmark binaries.
§Returns
Returns Ok(()) on success, or an error if something goes wrong.