pub trait InteractionsEngine<R, E> {
    // Required method
    fn perform_interactions(&mut self, app: &mut Application) -> Result<R, E>;
}

Required Methods§

source

fn perform_interactions(&mut self, app: &mut Application) -> Result<R, E>

Implementations on Foreign Types§

source§

impl InteractionsEngine<(), ()> for ()

Implementors§