fidl_test_componentmanager_stresstestsTrait ChildRealmProxyInterface
Source pub trait ChildRealmProxyInterface: Send + Sync {
type StopChildrenResponseFut: Future<Output = Result<(), Error>> + Send;
type CreateChildrenResponseFut: Future<Output = Result<(), Error>> + Send;
// Required methods
fn stop(&self) -> Result<(), Error>;
fn stop_children(&self) -> Self::StopChildrenResponseFut;
fn create_children(
&self,
direct_children: u16,
tree_height: u16,
) -> Self::CreateChildrenResponseFut;
}