#[non_exhaustive]pub struct CopcWriterParams {
pub max_points_per_node: u32,
}Expand description
Tuning parameters for COPC writes.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.max_points_per_node: u32Target maximum number of points per octree node (one LAZ chunk). The octree subdivides until nodes fit this budget, up to an internal depth cap that keeps voxel keys in range.
Implementations§
Trait Implementations§
Source§impl Clone for CopcWriterParams
impl Clone for CopcWriterParams
Source§fn clone(&self) -> CopcWriterParams
fn clone(&self) -> CopcWriterParams
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 moreimpl Copy for CopcWriterParams
Source§impl Debug for CopcWriterParams
impl Debug for CopcWriterParams
Auto Trait Implementations§
impl Freeze for CopcWriterParams
impl RefUnwindSafe for CopcWriterParams
impl Send for CopcWriterParams
impl Sync for CopcWriterParams
impl Unpin for CopcWriterParams
impl UnsafeUnpin for CopcWriterParams
impl UnwindSafe for CopcWriterParams
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