cfc/job/
common.rs

1pub(crate) const UNKNOWN_CONTAINER_LABEL: &'static str = "UNKNOWN";
2
3#[allow(dead_code)]
4pub struct ExecutionReport {
5    pub name: String,
6    pub command: String,
7    pub retval: u32,
8    pub stdout: Vec<u8>,
9    pub stderr: Vec<u8>,
10}