pub enum CellQueryStrategy {
Grid,
OccupiedCells,
}Expand description
Strategy used by the last scratch-backed cell query.
Variants§
Grid
Probe every cell touched by the query bounds.
OccupiedCells
Scan non-empty cells when the query covers a larger sparse volume.
Trait Implementations§
Source§impl Clone for CellQueryStrategy
impl Clone for CellQueryStrategy
Source§fn clone(&self) -> CellQueryStrategy
fn clone(&self) -> CellQueryStrategy
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 CellQueryStrategy
Source§impl Debug for CellQueryStrategy
impl Debug for CellQueryStrategy
Source§impl Default for CellQueryStrategy
impl Default for CellQueryStrategy
Source§fn default() -> CellQueryStrategy
fn default() -> CellQueryStrategy
Returns the “default value” for a type. Read more
impl Eq for CellQueryStrategy
Source§impl PartialEq for CellQueryStrategy
impl PartialEq for CellQueryStrategy
impl StructuralPartialEq for CellQueryStrategy
Auto Trait Implementations§
impl Freeze for CellQueryStrategy
impl RefUnwindSafe for CellQueryStrategy
impl Send for CellQueryStrategy
impl Sync for CellQueryStrategy
impl Unpin for CellQueryStrategy
impl UnsafeUnpin for CellQueryStrategy
impl UnwindSafe for CellQueryStrategy
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