1 2 3 4 5 6 7 8
use crate::runtime::msg::{Action, Event, Internal}; #[derive(Debug)] pub enum Msg { Action(Action), Internal(Internal), Event(Event), }