server: api doc part 4

This commit is contained in:
nym21
2025-10-08 18:42:36 +02:00
parent 114228e8eb
commit 83d74da556
113 changed files with 343 additions and 369 deletions
+12 -8
View File
@@ -83,14 +83,18 @@ impl<'a> Vecs<'a> {
this.index_to_metrics
.values_mut()
.for_each(|ids| sort_ids(ids));
this.catalog.replace(TreeNode::Branch(
[
("indexer".to_string(), indexer.vecs.to_tree_node()),
("computer".to_string(), computer.to_tree_node()),
]
.into_iter()
.collect(),
));
this.catalog.replace(
TreeNode::Branch(
[
("indexer".to_string(), indexer.vecs.to_tree_node()),
("computer".to_string(), computer.to_tree_node()),
]
.into_iter()
.collect(),
)
.simplify()
.unwrap(),
);
this
}