Skip to main content

AllConfigBounds

Struct AllConfigBounds 

Source
pub struct AllConfigBounds {
Show 15 fields pub exposure: ConfigBounds<i64>, pub gain: ConfigBounds<i64>, pub wb_r: Option<ConfigBounds<i64>>, pub wb_g: Option<ConfigBounds<i64>>, pub wb_b: Option<ConfigBounds<i64>>, pub offset: ConfigBounds<i64>, pub auto_max_gain: ConfigBounds<i64>, pub auto_max_exposure: ConfigBounds<i64>, pub auto_target_brightness: ConfigBounds<i64>, pub frame_limit: ConfigBounds<i64>, pub usb_bandwidth_limit: ConfigBounds<i64>, pub cooler_power: Option<ConfigBounds<i64>>, pub target_temperature: Option<ConfigBounds<i64>>, pub heater_power: Option<ConfigBounds<i64>>, pub fan_power: Option<ConfigBounds<i64>>,
}

Fields§

§exposure: ConfigBounds<i64>

exposure time(unit: us)

§gain: ConfigBounds<i64>§wb_r: Option<ConfigBounds<i64>>

red pixels coefficient of white balance

§wb_g: Option<ConfigBounds<i64>>

green pixels coefficient of white balance

§wb_b: Option<ConfigBounds<i64>>

blue pixels coefficient of white balance

§offset: ConfigBounds<i64>

gain offset (meaning: what 0 represents)

§auto_max_gain: ConfigBounds<i64>

maximum gain when auto-adjust

§auto_max_exposure: ConfigBounds<i64>

maximum exposure when auto-adjust(unit: ms)

§auto_target_brightness: ConfigBounds<i64>

target brightness when auto-adjust

§frame_limit: ConfigBounds<i64>

frame rate limit, the range:[0, 2000], 0 means no limit

§usb_bandwidth_limit: ConfigBounds<i64>

USB bandwidth limit [0, 100]%, default is 90

§cooler_power: Option<ConfigBounds<i64>>

cooler power percentage[0-100%]

§target_temperature: Option<ConfigBounds<i64>>

camera target temperature (Celsius)

§heater_power: Option<ConfigBounds<i64>>

heater power percentage[0-100%]

§fan_power: Option<ConfigBounds<i64>>

radiator fan power percentage[0-100%]

Trait Implementations§

Source§

impl Debug for AllConfigBounds

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl From<Vec<_POAConfigAttributes>> for AllConfigBounds

Source§

fn from(values: Vec<POAConfigAttributes>) -> Self

Converts to this type from the input type.

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.