bacon 3.23.0

background rust compiler
Documentation
1
2
3
4
5
6
7
8
use crate::Period;

/// Settings for one execution of a job's command
#[derive(Debug, Clone, Copy, PartialEq)]
pub struct Task {
    pub backtrace: Option<&'static str>, // ("0", "1", "2", or "full")
    pub grace_period: Period,
}