pub type LightGetGroupCurrentRgbValueResult = Result<Option<Vec<Rgb>>, LightError>;
enum LightGetGroupCurrentRgbValueResult { Ok(Option<Vec<Rgb>>), Err(LightError), }
Contains the success value
Contains the error value