pub struct GroupLookup {
pub collection: String,
pub payload: Option<PayloadSelector>,
pub vectors: Option<VectorSelector>,
}Expand description
LOOKUP FROM <collection> group-value resolution with result selectors
(OpenAPI WithLookup: bare name or {collection, with_payload, with_vectors}).
Fields§
§collection: StringCollection providing the looked-up points.
payload: Option<PayloadSelector>Payload selector applied to looked-up points.
vectors: Option<VectorSelector>Vector selector applied to looked-up points.
Trait Implementations§
Source§impl Clone for GroupLookup
impl Clone for GroupLookup
Source§fn clone(&self) -> GroupLookup
fn clone(&self) -> GroupLookup
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 GroupLookup
impl Debug for GroupLookup
Source§impl PartialEq for GroupLookup
impl PartialEq for GroupLookup
impl StructuralPartialEq for GroupLookup
Auto Trait Implementations§
impl Freeze for GroupLookup
impl RefUnwindSafe for GroupLookup
impl Send for GroupLookup
impl Sync for GroupLookup
impl Unpin for GroupLookup
impl UnsafeUnpin for GroupLookup
impl UnwindSafe for GroupLookup
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