pub struct CopcFileInfo {
pub root_bounds: CopcBounds,
pub spacing: f64,
pub point_count: u64,
}Expand description
Metadata exposed from a COPC header without loading point data.
Fields§
§root_bounds: CopcBoundsRoot octree bounds.
spacing: f64Base point spacing at octree level 0.
point_count: u64Declared number of points in the file header.
Trait Implementations§
Source§impl Clone for CopcFileInfo
impl Clone for CopcFileInfo
Source§fn clone(&self) -> CopcFileInfo
fn clone(&self) -> CopcFileInfo
Returns a duplicate of the value. Read more
1.0.0 · 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 CopcFileInfo
impl Debug for CopcFileInfo
Source§impl PartialEq for CopcFileInfo
impl PartialEq for CopcFileInfo
impl StructuralPartialEq for CopcFileInfo
Auto Trait Implementations§
impl Freeze for CopcFileInfo
impl RefUnwindSafe for CopcFileInfo
impl Send for CopcFileInfo
impl Sync for CopcFileInfo
impl Unpin for CopcFileInfo
impl UnsafeUnpin for CopcFileInfo
impl UnwindSafe for CopcFileInfo
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