pub type Msg = Box<dyn Any + Send>;Expand description
A message represents any event that can trigger a model update.
Msg is a type alias for Box<dyn Any + Send>, allowing it to hold
any type that implements Any and Send. This provides flexibility
in defining custom message types for your application.
Aliased Typeยง
pub struct Msg(/* private fields */);