pub struct CandelaEntry {
pub c_plane: f64,
pub gamma: f64,
pub candela: f64,
}Expand description
Single entry in candela tabulation.
Fields§
§c_plane: f64C-plane angle (degrees)
gamma: f64Gamma angle (degrees)
candela: f64Absolute candela value
Trait Implementations§
Source§impl Clone for CandelaEntry
impl Clone for CandelaEntry
Source§fn clone(&self) -> CandelaEntry
fn clone(&self) -> CandelaEntry
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 CandelaEntry
impl Debug for CandelaEntry
Source§impl Default for CandelaEntry
impl Default for CandelaEntry
Source§fn default() -> CandelaEntry
fn default() -> CandelaEntry
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for CandelaEntry
impl RefUnwindSafe for CandelaEntry
impl Send for CandelaEntry
impl Sync for CandelaEntry
impl Unpin for CandelaEntry
impl UnsafeUnpin for CandelaEntry
impl UnwindSafe for CandelaEntry
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