pub trait AttributionDataProvider:
Send
+ Sync
+ 'static {
// Required method
fn get_attribution_data(
&self,
) -> BoxFuture<'_, Result<AttributionData, Error>>;
}
pub trait AttributionDataProvider:
Send
+ Sync
+ 'static {
// Required method
fn get_attribution_data(
&self,
) -> BoxFuture<'_, Result<AttributionData, Error>>;
}