Trait adi::App

source ·
pub trait App {
    fn new() -> Self;
    fn run(&mut self);
}
Expand description

An Application’s Context.

Required Methods

Initialize the App data.

Run the next step of the application.

Implementors