* 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, } ```