pub struct DistanceFeatureQuery<S = Root> { /* private fields */ }Expand description
A distance_feature clause.
Implementations§
Trait Implementations§
Source§impl<S> AsQuery<S> for DistanceFeatureQuery<S>
impl<S> AsQuery<S> for DistanceFeatureQuery<S>
Source§fn into_query(self) -> Option<Query<S>>
fn into_query(self) -> Option<Query<S>>
The clause this produces, or
None to contribute nothing.Source§fn and(self, other: impl AsQuery<S>) -> Query<S>where
Self: Sized,
fn and(self, other: impl AsQuery<S>) -> Query<S>where
Self: Sized,
self AND other. An absent side is the identity.Source§fn or(self, other: impl AsQuery<S>) -> Query<S>where
Self: Sized,
fn or(self, other: impl AsQuery<S>) -> Query<S>where
Self: Sized,
self OR other. An absent side is the identity.Source§impl<S: Clone> Clone for DistanceFeatureQuery<S>
impl<S: Clone> Clone for DistanceFeatureQuery<S>
Source§fn clone(&self) -> DistanceFeatureQuery<S>
fn clone(&self) -> DistanceFeatureQuery<S>
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 moreAuto Trait Implementations§
impl<S> Freeze for DistanceFeatureQuery<S>
impl<S> RefUnwindSafe for DistanceFeatureQuery<S>
impl<S> Send for DistanceFeatureQuery<S>
impl<S> Sync for DistanceFeatureQuery<S>
impl<S> Unpin for DistanceFeatureQuery<S>
impl<S> UnsafeUnpin for DistanceFeatureQuery<S>
impl<S> UnwindSafe for DistanceFeatureQuery<S>
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