use std::time::Duration;
use super::PersistentProcess;
#[derive(Debug, Clone)]
pub struct PersistentStartup {
pub stdout: String,
pub stdout_bytes: Vec<u8>,
pub stderr: String,
pub stderr_bytes: Vec<u8>,
pub stdout_truncated: bool,
pub stderr_truncated: bool,
pub duration: Duration,
}
#[derive(Debug)]
pub struct PersistentRun {
pub startup: PersistentStartup,
pub process: PersistentProcess,
}