Skip to main content

tokf_filter/
lib.rs

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