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