/*
* Copyright (c) Microsoft Corporation.
* Licensed under the MIT license.
*/usediskann_providers::storage::AsyncQuantLoadContext;/// Context for loading an async disk index.
pubstructAsyncDiskLoadContext{/// AsyncQuantLoadContext for loading quantized data.
pubquant_load_context: AsyncQuantLoadContext,
/// Number of nodes to pre-load using breadth-first-search and cache in memory.
pubnum_nodes_to_cache:usize,
/// Number of maximum IO operations to perform during search.
pubsearch_io_limit:usize,
/// Number of vectors in the index.
pubnum_points:usize,
}