tokf_filter/lib.rs
1pub mod filter;
2pub mod verify;
3
4/// The result of executing a command, used as input to the filter pipeline.
5///
6/// This struct contains only the data needed for filtering — it does not
7/// include process execution logic (which lives in tokf-cli's `runner` module).
8#[derive(Debug, Clone, PartialEq, Eq)]
9pub struct CommandResult {
10 pub stdout: String,
11 pub stderr: String,
12 pub exit_code: i32,
13 pub combined: String,
14}