1#[derive(Debug)] 2pub struct CommandResult { 3 pub return_code: i32, 4 pub stdout: String, 5 pub stderr: String, 6}