Skip to main content

BuilderProxyInterface

Trait BuilderProxyInterface 

Source
pub trait BuilderProxyInterface: Send + Sync {
    type BuildResponseFut: Future<Output = Result<BuilderBuildResult, Error>> + Send;

    // Required method
    fn build(
        &self,
        runner: ClientEnd<ComponentRunnerMarker>,
    ) -> Self::BuildResponseFut;
}

Required Associated Types§

Required Methods§

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§