1 2 3 4 5 6 7 8
//! Vector engine error types. /// Errors from vector index operations. #[derive(Debug, thiserror::Error)] pub enum VectorError { #[error("vector dimension mismatch: expected {expected}, got {got}")] DimensionMismatch { expected: usize, got: usize }, }