pub trait RadioAsyncReducer {
type Action;
// Required method
fn async_apply(&mut self, _action: Self::Action)
where Self::Action: 'static;
}pub trait RadioAsyncReducer {
type Action;
// Required method
fn async_apply(&mut self, _action: Self::Action)
where Self::Action: 'static;
}