pub enum PointSelector {
Id(PointId),
Ids(Vec<PointId>),
Filter(Box<FilterExpr>),
}Variants§
Trait Implementations§
Source§impl Clone for PointSelector
impl Clone for PointSelector
Source§fn clone(&self) -> PointSelector
fn clone(&self) -> PointSelector
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 PointSelector
impl Debug for PointSelector
Source§impl PartialEq for PointSelector
impl PartialEq for PointSelector
impl StructuralPartialEq for PointSelector
Auto Trait Implementations§
impl Freeze for PointSelector
impl RefUnwindSafe for PointSelector
impl Send for PointSelector
impl Sync for PointSelector
impl Unpin for PointSelector
impl UnsafeUnpin for PointSelector
impl UnwindSafe for PointSelector
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