pub trait IntrospectorProxyInterface: Send + Sync {
    type GetMonikerResponseFut: Future<Output = Result<IntrospectorGetMonikerResult, Error>> + Send;

    // Required method
    fn get_moniker(
        &self,
        component_instance: Event
    ) -> Self::GetMonikerResponseFut;
}

Required Associated Types§

Required Methods§

source

fn get_moniker(&self, component_instance: Event) -> Self::GetMonikerResponseFut

Implementors§