pub trait ComponentDataRegisterProxyInterface: Send + Sync {
type UpsertResponseFut: Future<Output = Result<(), Error>> + Send;
// Required method
fn upsert(&self, data: &ComponentData) -> Self::UpsertResponseFut;
}Required Associated Types§
Required Methods§
fn upsert(&self, data: &ComponentData) -> Self::UpsertResponseFut
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".