1 2 3 4 5 6 7 8 9 10 11 12
pub enum ReleaseStatus { InProgress, ReadyForReview, InTesting, Deployed, } pub struct Feature { pub name: String, pub description: String, pub status: ReleaseStatus, }