1 2 3 4 5 6 7 8 9 10 11
use cubek_test_utils::CatalogEntry; pub struct ContiguousStrategy; pub fn strategies() -> Vec<CatalogEntry<ContiguousStrategy>> { vec![CatalogEntry::new( "default", "Default (into_contiguous)", ContiguousStrategy, )] }