pub trait IntoProvider<T: Send + Sync + Clone> {
type Provider: Provider<T>;
// Required method
fn into_provider(self) -> Self::Provider;
}
Expand description
Represents that a type can be represented as a provider. All Providers implement this trait.