pub trait ComponentDataRegisterProxyInterface: Send + Sync {
    type UpsertResponseFut: Future<Output = Result<(), Error>> + Send;

    // Required method
    fn upsert(&self, data: &ComponentData) -> Self::UpsertResponseFut;
}

Required Associated Types§

source

type UpsertResponseFut: Future<Output = Result<(), Error>> + Send

Required Methods§

source

fn upsert(&self, data: &ComponentData) -> Self::UpsertResponseFut

Implementors§