Struct style::traversal::PerLevelTraversalData
[−]
[src]
pub struct PerLevelTraversalData { pub current_dom_depth: usize, }
A per-traversal-level chunk of data. This is sent down by the traversal, and currently only holds the dom depth for the bloom filter.
NB: Keep this as small as possible, please!
Fields
current_dom_depth: usize
The current dom depth.
This is kept with cooperation from the traversal code and the bloom filter.
Trait Implementations
impl Clone for PerLevelTraversalData
[src]
fn clone(&self) -> PerLevelTraversalData
[src]
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more