pub type ProviderResult<T, E> = Result<T, E>;
Result type alias for provider operations.
pub enum ProviderResult<T, E> { Ok(T), Err(E), }
Contains the success value
Contains the error value