pub struct EmbeddingPlan {
pub epoch: Option<i64>,
pub nodes: Vec<NodeEmbedding>,
}Expand description
The embedding decisions of one ingest batch.
Fields§
§epoch: Option<i64>Epoch to stamp new vectors with. None means no comparable space is
in force, so no vector may be written or read.
nodes: Vec<NodeEmbedding>One entry per node of the request, in order.
Trait Implementations§
Source§impl Clone for EmbeddingPlan
impl Clone for EmbeddingPlan
Source§impl Debug for EmbeddingPlan
impl Debug for EmbeddingPlan
Source§impl Default for EmbeddingPlan
impl Default for EmbeddingPlan
Source§impl PartialEq for EmbeddingPlan
impl PartialEq for EmbeddingPlan
impl StructuralPartialEq for EmbeddingPlan
Auto Trait Implementations§
impl Freeze for EmbeddingPlan
impl RefUnwindSafe for EmbeddingPlan
impl Send for EmbeddingPlan
impl Sync for EmbeddingPlan
impl Unpin for EmbeddingPlan
impl UnsafeUnpin for EmbeddingPlan
impl UnwindSafe for EmbeddingPlan
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