pub struct AutoExposure {
pub luminance_min: f32,
pub luminance_max: f32,
pub exposure_correction: f32,
pub speed_dark_bright: f32,
pub speed_bright_dark: f32,
pub center_weight_power: f32,
}
Fields§
§luminance_min: f32
§luminance_max: f32
§exposure_correction: f32
§speed_dark_bright: f32
§speed_bright_dark: f32
§center_weight_power: f32
Trait Implementations§
Source§impl Clone for AutoExposure
impl Clone for AutoExposure
Source§fn clone(&self) -> AutoExposure
fn clone(&self) -> AutoExposure
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for AutoExposure
impl Debug for AutoExposure
Source§impl Deserialize for AutoExposure
impl Deserialize for AutoExposure
Source§type Output = AutoExposure
type Output = AutoExposure
Output should be Self, except for wrapper types.
fn deserialize(deser: &mut Deserializer<'_>) -> DeserializeResult<Self>
Source§impl PartialEq for AutoExposure
impl PartialEq for AutoExposure
Source§impl Serialize for AutoExposure
impl Serialize for AutoExposure
type Input = AutoExposure
fn serialize<S: Serializer>(value: &Self::Input, ser: &mut S) -> SerializeResult
impl StructuralPartialEq for AutoExposure
Auto Trait Implementations§
impl Freeze for AutoExposure
impl RefUnwindSafe for AutoExposure
impl Send for AutoExposure
impl Sync for AutoExposure
impl Unpin for AutoExposure
impl UnwindSafe for AutoExposure
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