xcodebuild 0.1.10

xcodebuild command wrapper, runner and log parser.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/// Kinds of outputs
pub enum OutputKind {
    Task,
    Test,
    Warning,
    Error,
    Result,
}

#[derive(derive_deref_rs::Deref)]
/// Formatted results of a given match
pub struct FormattedOutput {
    #[deref]
    pub value: Option<String>,
    pub kind: OutputKind,
}