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