(&mut self, name: &str)
| 43 | } |
| 44 | |
| 45 | pub fn with_vector_column(&mut self, name: &str) -> &mut Self { |
| 46 | self.vector_column = Some(name.to_string()); |
| 47 | self |
| 48 | } |
| 49 | |
| 50 | pub fn with_query_vector(&mut self, vector: Vec<f32>) -> &mut Self { |
| 51 | self.query_vector = Some(vector); |