pub struct NamespaceMigrationResult {
pub namespace: String,
pub original_dimension: usize,
pub vectors_migrated: usize,
pub vectors_skipped: usize,
pub status: String,
pub error: Option<String>,
}Expand description
Per-namespace migration result.
Fields§
§namespace: StringNamespace that was migrated.
original_dimension: usizeOriginal embedding dimension.
vectors_migrated: usizeVectors successfully re-embedded.
vectors_skipped: usizeVectors skipped (already at target dimension).
status: StringMigration status for this namespace.
error: Option<String>Error message if migration failed for this namespace.
Trait Implementations§
Source§impl Clone for NamespaceMigrationResult
impl Clone for NamespaceMigrationResult
Source§fn clone(&self) -> NamespaceMigrationResult
fn clone(&self) -> NamespaceMigrationResult
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 NamespaceMigrationResult
impl Debug for NamespaceMigrationResult
Source§impl<'de> Deserialize<'de> for NamespaceMigrationResult
impl<'de> Deserialize<'de> for NamespaceMigrationResult
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 NamespaceMigrationResult
impl RefUnwindSafe for NamespaceMigrationResult
impl Send for NamespaceMigrationResult
impl Sync for NamespaceMigrationResult
impl Unpin for NamespaceMigrationResult
impl UnsafeUnpin for NamespaceMigrationResult
impl UnwindSafe for NamespaceMigrationResult
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