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;
}

Required Associated Types§

Required Methods§

source

fn stop(&self) -> Result<(), Error>

source

fn stop_children(&self) -> Self::StopChildrenResponseFut

source

fn create_children( &self, direct_children: u16, tree_height: u16 ) -> Self::CreateChildrenResponseFut

Implementors§