pub struct TreeStats {
pub depth: usize,
pub dummy_normals: usize,
pub split_nodes: usize,
pub descendants: usize,
}Expand description
The different stats of a tree in an arroy database.
Fields§
§depth: usizeThe depth of the tree.
dummy_normals: usizeThe number of split plane normals that were set to zero and where children are randomly assigned a side.
split_nodes: usizeNumber of split nodes in the tree.
descendants: usizeNumber of descendants nodes in the tree.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for TreeStats
impl RefUnwindSafe for TreeStats
impl Send for TreeStats
impl Sync for TreeStats
impl Unpin for TreeStats
impl UnwindSafe for TreeStats
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more