pub struct Options {
pub thread_limit: Option<usize>,
pub check: SafetyCheck,
}
Expand description
Traversal options for traverse_with_index()
Fields§
§thread_limit: Option<usize>
If Some
, only use the given amount of threads. Otherwise, the amount of threads to use will be selected based on
the amount of available logical cores.
check: SafetyCheck
The kinds of safety checks to perform.