Guys, a bit newbie question, how can I create an "enum that have more values assigned to it" ```rust // AK09915 Mode Settings - Corresponding to Control Register 2 #[derive(Clone, Copy)] pub enum Mode { Test= ModeStruct{value: 6, ready_check: std::time::Duration::from_millis(500)}, } #[derive(Copy, Clone)] struct ModeStruct{ value: u8, ready_check: std::time::Duration, } ```