pub type ReadResult = Result<(OpCode, Vec<u8>), ReadError>;
Represents the result of attempting a syscall read on the file descriptor
enum ReadResult { Ok((OpCode, Vec<u8>)), Err(ReadError), }
Contains the success value
Contains the error value