pub trait ComponentSandboxRetrieverProxyInterface: Send + Sync {
type GetMySandboxResponseFut: Future<Output = Result<ComponentSandbox, Error>> + Send;
// Required method
fn get_my_sandbox(&self) -> Self::GetMySandboxResponseFut;
}
pub trait ComponentSandboxRetrieverProxyInterface: Send + Sync {
type GetMySandboxResponseFut: Future<Output = Result<ComponentSandbox, Error>> + Send;
// Required method
fn get_my_sandbox(&self) -> Self::GetMySandboxResponseFut;
}