pub type Binary = Result<Vec<u8>, Error>;
A representation of a value which can be stored and restored as a binary.
pub enum Binary { Ok(Vec<u8>), Err(Error), }
Contains the success value
Contains the error value