pub type Line = Result<Syscall>;
pub enum Line { Ok(Syscall), Err(Error), }
Contains the success value
Contains the error value