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§
type GetMonikerResponseFut: Future<Output = Result<IntrospectorGetMonikerResult, Error>> + Send
Required Methods§
fn get_moniker(&self, component_instance: Event) -> Self::GetMonikerResponseFut
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".