pub type ProviderInitResult = Result<&'static str, &'static str>;Expand description
The result of a provider init is either a string with some free-form details about the provider, or a string indicating the error which prevented the provider from initializing
On success, the string takes the form:
$PROVIDER_NAME::$IMPLEMENTATION::$VERSIONfor example:
my_provider::native/native_noop::0.1.0Aliased Type§
pub enum ProviderInitResult {
Ok(&'static str),
Err(&'static str),
}