pub trait AppInterface: ModuleInterface {
    // Provided method
    fn apps<'a>(&'a self, deps: Deps<'a>) -> App<'_, Self> { ... }
}
Expand description

Interact with other modules on the Account.

Provided Methods§

source

fn apps<'a>(&'a self, deps: Deps<'a>) -> App<'_, Self>

Implementors§

source§

impl<T> AppInterface for Twhere T: ModuleInterface,