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