pub struct LampSet {
pub num_lamps: i32,
pub lamp_type: String,
pub total_luminous_flux: f64,
pub color_appearance: String,
pub color_rendering_group: String,
pub wattage_with_ballast: f64,
}Expand description
Lamp set configuration.
A luminaire can have up to 20 lamp sets, each describing a group of lamps.
Fields§
§num_lamps: i32Number of lamps in this set.
lamp_type: StringType of lamps (description string).
total_luminous_flux: f64Total luminous flux of this lamp set in lumens.
color_appearance: StringColor appearance / color temperature.
color_rendering_group: StringColor rendering group / CRI.
wattage_with_ballast: f64Wattage including ballast in watts.
Trait Implementations§
impl StructuralPartialEq for LampSet
Auto Trait Implementations§
impl Freeze for LampSet
impl RefUnwindSafe for LampSet
impl Send for LampSet
impl Sync for LampSet
impl Unpin for LampSet
impl UnsafeUnpin for LampSet
impl UnwindSafe for LampSet
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more