pkgcraft/types.rs
1pub type RepoIter<'a> = pkgcraft::repo::Iter<'a>;
2pub type RepoIterCpv<'a> = pkgcraft::repo::IterCpv<'a>;
3pub type RepoIterRestrict<'a> = pkgcraft::repo::IterRestrict<'a>;
4pub type RepoSetIter<'a> = pkgcraft::repo::set::Iter<'a>;
5pub type EbuildTempRepo = pkgcraft::repo::ebuild::temp::Repo;
6
7/// Generic set operations.
8#[repr(C)]
9pub enum SetOp {
10 And,
11 Or,
12 Xor,
13 Sub,
14}