pub struct EmbeddingDelta {
pub region: EmbeddingRegion,
pub changed_ids: Vec<u64>,
pub vectors: Vec<Vec<f32>>,
pub generation: u64,
pub source_peer: String,
pub created_at_ms: u64,
}Expand description
A delta snapshot of changed embeddings in a region.
changed_ids and vectors are parallel slices: changed_ids[i] is the
node ID whose new vector is vectors[i].
Fields§
§region: EmbeddingRegionThe region this delta covers.
changed_ids: Vec<u64>Node IDs that changed (parallel to vectors).
vectors: Vec<Vec<f32>>Corresponding new vectors (parallel to changed_ids).
generation: u64Monotonically increasing version counter.
source_peer: StringOriginating peer identifier.
created_at_ms: u64Wall-clock timestamp (milliseconds since Unix epoch) at creation.
Implementations§
Source§impl EmbeddingDelta
impl EmbeddingDelta
Sourcepub fn new(
region: EmbeddingRegion,
generation: u64,
source_peer: impl Into<String>,
now_ms: u64,
) -> Self
pub fn new( region: EmbeddingRegion, generation: u64, source_peer: impl Into<String>, now_ms: u64, ) -> Self
Construct an empty delta for region at generation.
Sourcepub fn add_change(&mut self, node_id: u64, vector: Vec<f32>)
pub fn add_change(&mut self, node_id: u64, vector: Vec<f32>)
Append a single changed node.
Sourcepub fn change_count(&self) -> usize
pub fn change_count(&self) -> usize
Number of changed nodes recorded in this delta.
Sourcepub fn estimated_bytes(&self) -> usize
pub fn estimated_bytes(&self) -> usize
Rough byte estimate for gossip bandwidth accounting.
Formula: 4 * Σ(dim_i) + 8 * n where n is the number of changed
nodes and dim_i is the length of the i-th vector.
Trait Implementations§
Source§impl Clone for EmbeddingDelta
impl Clone for EmbeddingDelta
Source§fn clone(&self) -> EmbeddingDelta
fn clone(&self) -> EmbeddingDelta
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 EmbeddingDelta
impl Debug for EmbeddingDelta
Source§impl<'de> Deserialize<'de> for EmbeddingDelta
impl<'de> Deserialize<'de> for EmbeddingDelta
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for EmbeddingDelta
impl RefUnwindSafe for EmbeddingDelta
impl Send for EmbeddingDelta
impl Sync for EmbeddingDelta
impl Unpin for EmbeddingDelta
impl UnsafeUnpin for EmbeddingDelta
impl UnwindSafe for EmbeddingDelta
Blanket Implementations§
impl<T> Allocation for T
Source§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
Source§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§impl<T> Pointable for T
impl<T> Pointable for T
impl<T> Read<Exclusive, BecauseExclusive> for Twhere
T: ?Sized,
Source§impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
Source§fn to_subset(&self) -> Option<SS>
fn to_subset(&self) -> Option<SS>
The inverse inclusion map: attempts to construct
self from the equivalent element of its
superset. Read moreSource§fn is_in_subset(&self) -> bool
fn is_in_subset(&self) -> bool
Checks if
self is actually part of its subset T (and can be converted to it).Source§fn to_subset_unchecked(&self) -> SS
fn to_subset_unchecked(&self) -> SS
Use with care! Same as
self.to_subset but without any property checks. Always succeeds.Source§fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
The inclusion map: converts
self to the equivalent element of its superset.