pub struct DngProfileInfo {
pub profile_name: Option<String>,
pub profile_tone_curve: Option<Vec<f32>>,
}Expand description
DNG profile data.
Fields§
§profile_name: Option<String>Embedded profile name
profile_tone_curve: Option<Vec<f32>>Profile tone curve (pairs of input/output values)
Trait Implementations§
Source§impl Clone for DngProfileInfo
impl Clone for DngProfileInfo
Source§fn clone(&self) -> DngProfileInfo
fn clone(&self) -> DngProfileInfo
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 DngProfileInfo
impl Debug for DngProfileInfo
Source§impl Default for DngProfileInfo
impl Default for DngProfileInfo
Source§fn default() -> DngProfileInfo
fn default() -> DngProfileInfo
Returns the “default value” for a type. Read more
Source§impl PartialEq for DngProfileInfo
impl PartialEq for DngProfileInfo
Source§fn eq(&self, other: &DngProfileInfo) -> bool
fn eq(&self, other: &DngProfileInfo) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for DngProfileInfo
Auto Trait Implementations§
impl Freeze for DngProfileInfo
impl RefUnwindSafe for DngProfileInfo
impl Send for DngProfileInfo
impl Sync for DngProfileInfo
impl Unpin for DngProfileInfo
impl UnsafeUnpin for DngProfileInfo
impl UnwindSafe for DngProfileInfo
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