arch_pkg_db/text/single.rs
1mod collect;
2mod extend;
3mod insert;
4mod iter;
5mod misc;
6mod new;
7mod parse;
8
9pub use iter::{TextIntoIter, TextIter, TextIterMut};
10pub use parse::TextCollectionParseError;
11
12/// Collection of all `desc` texts from which queriers may access data.
13#[derive(Debug, Default, Clone)]
14pub struct TextCollection {
15 internal: Vec<crate::Text>,
16}