pub trait IntrospectorProxyInterface: Send + Sync {
type GetMonikerResponseFut: Future<Output = Result<IntrospectorGetMonikerResult, Error>> + Send;
// Required method
fn get_moniker(
&self,
component_instance: Event,
) -> Self::GetMonikerResponseFut;
}