1 2 3 4 5 6 7 8
//! Output line types for agent command execution. /// Output line from a child process #[derive(Debug, Clone)] pub enum OutputLine { Stdout(String), Stderr(String), }