pub enum LodSelection {
All,
Resolution(f64),
Level(i32),
LevelMinMax(i32, i32),
}Expand description
Limits the octree levels included in a point query.
Variants§
All
Full resolution: every point chunk in every LOD.
Resolution(f64)
Include levels needed to satisfy the requested spacing.
Level(i32)
Include exactly one octree level.
LevelMinMax(i32, i32)
Include levels in [min, max).
Trait Implementations§
Source§impl Clone for LodSelection
impl Clone for LodSelection
Source§fn clone(&self) -> LodSelection
fn clone(&self) -> LodSelection
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 LodSelection
impl Debug for LodSelection
Source§impl PartialEq for LodSelection
impl PartialEq for LodSelection
Source§fn eq(&self, other: &LodSelection) -> bool
fn eq(&self, other: &LodSelection) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for LodSelection
impl StructuralPartialEq for LodSelection
Auto Trait Implementations§
impl Freeze for LodSelection
impl RefUnwindSafe for LodSelection
impl Send for LodSelection
impl Sync for LodSelection
impl Unpin for LodSelection
impl UnsafeUnpin for LodSelection
impl UnwindSafe for LodSelection
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