pub type BinaryResult<T> = Result<T>;
pub enum BinaryResult<T> { Ok(T), Err(BinaryError), }
Contains the success value
Contains the error value