pub type ProviderResult<T> = Result<T, ProviderError>;
Expand description
Result type for provider operations
Aliased Type§
enum ProviderResult<T> {
Ok(T),
Err(ProviderError),
}
pub type ProviderResult<T> = Result<T, ProviderError>;
Result type for provider operations
enum ProviderResult<T> {
Ok(T),
Err(ProviderError),
}