Skip to main content

camel_component_exec/
headers.rs

1//! Header constants for the exec component.
2
3pub const CAMEL_EXEC_ARGS: &str = "CamelExecArgs";
4pub const CAMEL_EXEC_PROFILE: &str = "CamelExecProfile"; // out only: effective profile
5pub const CAMEL_EXEC_EXIT_CODE: &str = "CamelExecExitCode";
6pub const CAMEL_EXEC_EXIT_ACCEPTED: &str = "CamelExecExitAccepted";
7pub const CAMEL_EXEC_STDERR: &str = "CamelExecStderr";
8pub const CAMEL_EXEC_STDOUT_TRUNCATED: &str = "CamelExecStdoutTruncated";
9pub const CAMEL_EXEC_STDERR_TRUNCATED: &str = "CamelExecStderrTruncated";
10pub const CAMEL_EXEC_TIMED_OUT: &str = "CamelExecTimedOut";