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