1 2 3 4 5 6 7
/// A lightweight way to keep the returned RGB values grouped together. pub struct Rgb { pub r: f32, pub g: f32, pub b: f32, pub clamp: bool, }