bacon 3.23.0

background rust compiler
Documentation
1
2
3
4
5
6
7
8
9
10
11
/// A dynamic reduction of a job execution
#[derive(Debug, Clone, Default, PartialEq, Eq, Hash)]
pub struct Scope {
    pub tests: Vec<String>,
}

impl Scope {
    pub fn has_tests(&self) -> bool {
        !self.tests.is_empty()
    }
}