oma-pm 0.63.0

APT package manager API abstraction library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#[derive(Debug, Default)]
pub struct SummarySort {
    pub(crate) names: bool,
    pub(crate) operation: bool,
}

impl SummarySort {
    pub fn names(mut self) -> Self {
        self.names = true;
        self
    }

    pub fn operation(mut self) -> Self {
        self.operation = true;
        self
    }
}