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