#[init_default_state]Expand description
Initialize the default state of the annotated struct
on application startup using ctor.
The default state is the result of calling Default::default().
ยงExample
use app_state::{MutAppState, init_default_state, AppStateTrait};
#[init_default_state]
#[derive(Default)]
struct SomeState {
name: String,
}