pub struct ReembedReport {
pub rows_seen: usize,
pub rows_reembedded: usize,
pub rows_failed: usize,
pub rows_gc_deleted: usize,
pub dry_run: bool,
}Fields§
§rows_seen: usizeDistinct memory_ids that matched the candidate query.
rows_reembedded: usizeMemories whose new embedding was successfully written.
rows_failed: usizeMemories that hit an error during embed or insert.
rows_gc_deleted: usizeNumber of stale embeddings rows DELETED via --gc.
dry_run: boolMirrors the scope flag so callers can format output without retaining the original scope.
Trait Implementations§
Source§impl Clone for ReembedReport
impl Clone for ReembedReport
Source§fn clone(&self) -> ReembedReport
fn clone(&self) -> ReembedReport
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 ReembedReport
impl Debug for ReembedReport
Source§impl Default for ReembedReport
impl Default for ReembedReport
Source§fn default() -> ReembedReport
fn default() -> ReembedReport
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ReembedReport
impl RefUnwindSafe for ReembedReport
impl Send for ReembedReport
impl Sync for ReembedReport
impl Unpin for ReembedReport
impl UnsafeUnpin for ReembedReport
impl UnwindSafe for ReembedReport
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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 more