pub struct AlwaysReprocessDetector;Expand description
Delta detector that always triggers reprocessing.
Useful for full rebuilds where all embeddings should be regenerated regardless of content changes.
Trait Implementations§
Source§impl Clone for AlwaysReprocessDetector
impl Clone for AlwaysReprocessDetector
Source§fn clone(&self) -> AlwaysReprocessDetector
fn clone(&self) -> AlwaysReprocessDetector
Returns a duplicate of the value. Read more
1.0.0 · 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 AlwaysReprocessDetector
impl Debug for AlwaysReprocessDetector
Source§impl Default for AlwaysReprocessDetector
impl Default for AlwaysReprocessDetector
Source§fn default() -> AlwaysReprocessDetector
fn default() -> AlwaysReprocessDetector
Returns the “default value” for a type. Read more
Source§impl DeltaDetector for AlwaysReprocessDetector
impl DeltaDetector for AlwaysReprocessDetector
Source§fn needs_reprocessing(
&self,
existing_hash: Option<&Option<String>>,
_new_hash: &str,
) -> ReprocessingDecision
fn needs_reprocessing( &self, existing_hash: Option<&Option<String>>, _new_hash: &str, ) -> ReprocessingDecision
Determines if a dataset needs reprocessing. Read more
Auto Trait Implementations§
impl Freeze for AlwaysReprocessDetector
impl RefUnwindSafe for AlwaysReprocessDetector
impl Send for AlwaysReprocessDetector
impl Sync for AlwaysReprocessDetector
impl Unpin for AlwaysReprocessDetector
impl UnsafeUnpin for AlwaysReprocessDetector
impl UnwindSafe for AlwaysReprocessDetector
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