1 2 3 4 5 6 7 8
pub type GroupId = u32; pub trait Group { fn id(&self) -> GroupId; fn name(&self) -> String; fn run(&self); }