antbox-engine 0.1.0

A dedicated thread engine for evolving & controlling `antbox` states.
Documentation
1
2
3
4
5
6
7
8
9
10
use antbox_state::State;
use derive_more::From;
use derive_new::new;

/// A [Notification] from the engine to the app
#[derive(Debug, From, new)]
pub enum Notification {
    /// A new antbox state is available
    NewState(State),
}