pub trait ActionGroup<S: Send + Sync + Clone + 'static> {
// Required method
fn actions(&self) -> &[Arc<FunctionAction<S>>];
}Expand description
Represents a group of related actions
pub trait ActionGroup<S: Send + Sync + Clone + 'static> {
// Required method
fn actions(&self) -> &[Arc<FunctionAction<S>>];
}Represents a group of related actions