From 300722d651d035f42aeb8f48eb19c9c33b650075 Mon Sep 17 00:00:00 2001 From: Erich Gubler Date: Thu, 9 Oct 2025 13:33:17 -0400 Subject: [PATCH] chore: satisfy `private_bounds` lint --- src/memtest.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/memtest.rs b/src/memtest.rs index d76868b..23565cd 100644 --- a/src/memtest.rs +++ b/src/memtest.rs @@ -339,7 +339,7 @@ mod two_region { /// A two region test has to passes of memory for every run. The test splits memory into /// two halves. The first pass iterates through memory and writes some memory pattern to each /// pair of locations. The second pass reads through and compare the two halves. - trait TwoRegionTestAlgorithm: fmt::Debug + Default { + pub(super) trait TwoRegionTestAlgorithm: fmt::Debug + Default { /// The number of runs the algorithm needs. Most tests can just accept the default of '1' fn num_runs(&self) -> u64 { 1