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