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