pub trait ComponentDataRegisterProxyInterface: Send + Sync {
type UpsertResponseFut: Future<Output = Result<(), Error>> + Send;
// Required method
fn upsert(&self, data: ComponentData) -> Self::UpsertResponseFut;
}
pub trait ComponentDataRegisterProxyInterface: Send + Sync {
type UpsertResponseFut: Future<Output = Result<(), Error>> + Send;
// Required method
fn upsert(&self, data: ComponentData) -> Self::UpsertResponseFut;
}