pub struct LampPosition {
pub horizontal: f64,
pub vertical: f64,
}Expand description
Lamp position within luminaire (LM-63-2019 Annex E).
Fields§
§horizontal: f64Horizontal position angle (0-360°)
vertical: f64Vertical position angle (0-180°)
Trait Implementations§
Source§impl Clone for LampPosition
impl Clone for LampPosition
Source§fn clone(&self) -> LampPosition
fn clone(&self) -> LampPosition
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for LampPosition
impl Debug for LampPosition
Source§impl Default for LampPosition
impl Default for LampPosition
Source§fn default() -> LampPosition
fn default() -> LampPosition
Returns the “default value” for a type. Read more
impl Copy for LampPosition
Auto Trait Implementations§
impl Freeze for LampPosition
impl RefUnwindSafe for LampPosition
impl Send for LampPosition
impl Sync for LampPosition
impl Unpin for LampPosition
impl UnsafeUnpin for LampPosition
impl UnwindSafe for LampPosition
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