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