pub trait Provider:
Debug
+ Send
+ Sync {
// Required method
fn get<'life0, 'life1, 'async_trait>(
&'life0 self,
key: &'life1 Key<'_>,
) -> Pin<Box<dyn Future<Output = Result<Option<String>>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait;
}
Expand description
A config provider.