zccache 1.12.5

Local-first compiler cache for C/C++/Rust/Emscripten
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Request object for the compile pipeline.

use super::super::*;

pub(super) struct CompileRequest<'a> {
    pub(super) state_arc: &'a Arc<SharedState>,
    pub(super) session_id: &'a str,
    pub(super) args: &'a [String],
    pub(super) cwd: &'a Path,
    pub(super) compiler_path: &'a Path,
    pub(super) client_env: Option<Vec<(String, String)>>,
    pub(super) stdin: Vec<u8>,
}