pub enum BoundsSelection {
All,
Within(Bounds),
}Expand description
Limits points by XYZ bounds.
Variants§
Trait Implementations§
Source§impl Clone for BoundsSelection
impl Clone for BoundsSelection
Source§fn clone(&self) -> BoundsSelection
fn clone(&self) -> BoundsSelection
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 BoundsSelection
impl Debug for BoundsSelection
Source§impl PartialEq for BoundsSelection
impl PartialEq for BoundsSelection
Source§fn eq(&self, other: &BoundsSelection) -> bool
fn eq(&self, other: &BoundsSelection) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for BoundsSelection
impl StructuralPartialEq for BoundsSelection
Auto Trait Implementations§
impl Freeze for BoundsSelection
impl RefUnwindSafe for BoundsSelection
impl Send for BoundsSelection
impl Sync for BoundsSelection
impl Unpin for BoundsSelection
impl UnsafeUnpin for BoundsSelection
impl UnwindSafe for BoundsSelection
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