pub struct DevelopParams {
pub width: usize,
pub height: usize,
pub cpp: usize,
pub color_matrices: Vec<ColorMatrix>,
pub whitelevel: WhiteLevel,
pub blacklevel: BlackLevel,
pub photometric: RawPhotometricInterpretation,
pub wb_coeff: [f32; 4],
pub active_area: Option<Rect>,
pub crop_area: Option<Rect>,
}Expand description
Parameters for raw image development
Fields§
§width: usize§height: usize§cpp: usize§color_matrices: Vec<ColorMatrix>§whitelevel: WhiteLevel§blacklevel: BlackLevel§photometric: RawPhotometricInterpretation§wb_coeff: [f32; 4]§active_area: Option<Rect>§crop_area: Option<Rect>Trait Implementations§
Auto Trait Implementations§
impl Freeze for DevelopParams
impl RefUnwindSafe for DevelopParams
impl Send for DevelopParams
impl Sync for DevelopParams
impl Unpin for DevelopParams
impl UnsafeUnpin for DevelopParams
impl UnwindSafe for DevelopParams
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
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more