#[repr(C)]pub struct OctreeNode {
pub min_x: f32,
pub min_y: f32,
pub min_z: f32,
pub max_x: f32,
pub max_y: f32,
pub max_z: f32,
pub children_ptr: u64,
pub data_ptr: u64,
pub data_len: u32,
pub _padding: u32,
}Fields§
§min_x: f32§min_y: f32§min_z: f32§max_x: f32§max_y: f32§max_z: f32§children_ptr: u64§data_ptr: u64§data_len: u32§_padding: u32Trait Implementations§
Source§impl Clone for OctreeNode
impl Clone for OctreeNode
Source§fn clone(&self) -> OctreeNode
fn clone(&self) -> OctreeNode
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for OctreeNode
impl Debug for OctreeNode
impl Copy for OctreeNode
impl Pod for OctreeNode
Auto Trait Implementations§
impl Freeze for OctreeNode
impl RefUnwindSafe for OctreeNode
impl Send for OctreeNode
impl Sync for OctreeNode
impl Unpin for OctreeNode
impl UnsafeUnpin for OctreeNode
impl UnwindSafe for OctreeNode
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
Source§impl<T> CheckedBitPattern for Twhere
T: AnyBitPattern,
impl<T> CheckedBitPattern for Twhere
T: AnyBitPattern,
Source§type Bits = T
type Bits = T
Self must have the same layout as the specified Bits except for
the possible invalid bit patterns being checked during
is_valid_bit_pattern.Source§fn is_valid_bit_pattern(_bits: &T) -> bool
fn is_valid_bit_pattern(_bits: &T) -> bool
If this function returns true, then it must be valid to reinterpret
bits
as &Self.