pub struct AgxConfig {Show 19 fields
pub inset_red: f32,
pub inset_green: f32,
pub inset_blue: f32,
pub rotate_red: f32,
pub rotate_green: f32,
pub rotate_blue: f32,
pub outset_red: f32,
pub outset_green: f32,
pub outset_blue: f32,
pub toe_power: f32,
pub shoulder_power: f32,
pub slope: f32,
pub in_gamut: Gamut,
pub in_transfer: Transfer,
pub working_curve: Transfer,
pub working_mid_grey: f32,
pub out_gamut: Gamut,
pub out_transfer: OutputTransfer,
pub log_output: bool,
}Fields§
§inset_red: f32§inset_green: f32§inset_blue: f32§rotate_red: f32§rotate_green: f32§rotate_blue: f32§outset_red: f32§outset_green: f32§outset_blue: f32§toe_power: f32§shoulder_power: f32§slope: f32§in_gamut: Gamut§in_transfer: Transfer§working_curve: Transfer§working_mid_grey: f32§out_gamut: Gamut§out_transfer: OutputTransfer§log_output: boolTrait Implementations§
Auto Trait Implementations§
impl Freeze for AgxConfig
impl RefUnwindSafe for AgxConfig
impl Send for AgxConfig
impl Sync for AgxConfig
impl Unpin for AgxConfig
impl UnsafeUnpin for AgxConfig
impl UnwindSafe for AgxConfig
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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