pub struct Node64 { /* private fields */ }
Expand description
A single node in the sparse voxel tree.
Instead of a flat pointer (u32) into a contiguous array, we now store
a vector of child keys. The child_mask
is kept to preserve the
same “sparse” child ordering as before.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Node64
impl RefUnwindSafe for Node64
impl Send for Node64
impl Sync for Node64
impl Unpin for Node64
impl UnwindSafe for Node64
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