pub struct EmbeddingMigrationRunResult {
pub scanned: usize,
pub selected: usize,
pub updated: usize,
pub skipped: usize,
pub failed: usize,
pub duplicate: usize,
pub started_at: DateTime<Utc>,
pub completed_at: DateTime<Utc>,
pub provider_model: Option<String>,
pub failure_reasons: Vec<String>,
}Fields§
§scanned: usize§selected: usize§updated: usize§skipped: usize§failed: usize§duplicate: usize§started_at: DateTime<Utc>§completed_at: DateTime<Utc>§provider_model: Option<String>§failure_reasons: Vec<String>Trait Implementations§
Source§impl Clone for EmbeddingMigrationRunResult
impl Clone for EmbeddingMigrationRunResult
Source§fn clone(&self) -> EmbeddingMigrationRunResult
fn clone(&self) -> EmbeddingMigrationRunResult
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 moreAuto Trait Implementations§
impl Freeze for EmbeddingMigrationRunResult
impl RefUnwindSafe for EmbeddingMigrationRunResult
impl Send for EmbeddingMigrationRunResult
impl Sync for EmbeddingMigrationRunResult
impl Unpin for EmbeddingMigrationRunResult
impl UnsafeUnpin for EmbeddingMigrationRunResult
impl UnwindSafe for EmbeddingMigrationRunResult
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