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