pub struct LightDistributionData {
pub distribution_type: String,
pub planes: Vec<DistributionPlane>,
}Expand description
Light distribution/photometry data
Fields§
§distribution_type: StringDistribution type (TYPE_A, TYPE_B, TYPE_C)
planes: Vec<DistributionPlane>Distribution planes (C-planes for Type C)
Trait Implementations§
Source§impl Clone for LightDistributionData
impl Clone for LightDistributionData
Source§fn clone(&self) -> LightDistributionData
fn clone(&self) -> LightDistributionData
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 LightDistributionData
impl Debug for LightDistributionData
Source§impl<'de> Deserialize<'de> for LightDistributionData
impl<'de> Deserialize<'de> for LightDistributionData
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for LightDistributionData
impl RefUnwindSafe for LightDistributionData
impl Send for LightDistributionData
impl Sync for LightDistributionData
impl Unpin for LightDistributionData
impl UnsafeUnpin for LightDistributionData
impl UnwindSafe for LightDistributionData
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