pub enum Plan {
Partitions {
tuning: Tuning,
capacity: usize,
},
Graph,
}Expand description
What to do with an HNSW request.
Variants§
Partitions
Serve it here, tuned like this, with this many postings ready.
Fields
Graph
The client asked for a real graph under Compat::Strict. There is not
one, so the layer above refuses.
Trait Implementations§
impl Copy for Plan
impl StructuralPartialEq for Plan
Auto Trait Implementations§
impl Freeze for Plan
impl RefUnwindSafe for Plan
impl Send for Plan
impl Sync for Plan
impl Unpin for Plan
impl UnsafeUnpin for Plan
impl UnwindSafe for Plan
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