pub trait ProviderInner: Send {
// Required method
fn query(&self, query: RStr<'_>) -> ProviderResult;
// Provided method
fn clear_caches(&self) { ... }
}
Expand description
This trait is auto-implemented with the crate::gravel_provider
macro.
It does some boilerplate conversions to reduce complexity in the real Provider
.