From c57340f2eced00cea0d7d1556e39ed54b0e57cc5 Mon Sep 17 00:00:00 2001 From: Kerollmops Date: Tue, 31 Dec 2024 12:46:56 +0100 Subject: [PATCH] Make N/A not the smallest value --- benches/lmdb_benchmark.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/benches/lmdb_benchmark.rs b/benches/lmdb_benchmark.rs index b7ff5b0a..63eb0ea2 100644 --- a/benches/lmdb_benchmark.rs +++ b/benches/lmdb_benchmark.rs @@ -331,9 +331,9 @@ fn database_size(path: &Path) -> u64 { #[derive(Copy, Clone, PartialEq, Eq, PartialOrd, Ord)] enum ResultType { - NA, Duration(Duration), SizeInBytes(u64), + NA, } impl std::fmt::Display for ResultType {