pub struct GasProfile {
pub index: GasProfileIndex,
pub target_temp: Celsius,
pub wait_time: Milliseconds,
}Expand description
Konfiguration für die Heizplatte des Gassensors.
Fields§
§index: GasProfileIndexIndex des Profil-Slots im Sensor-Speicher.
target_temp: CelsiusZieltemperatur der Heizplatte (typischerweise 300°C bis 400°C).
wait_time: MillisecondsDauer, für die die Temperatur vor der Messung gehalten wird (Aufheizzeit).
Trait Implementations§
Source§impl Clone for GasProfile
impl Clone for GasProfile
Source§fn clone(&self) -> GasProfile
fn clone(&self) -> GasProfile
Returns a duplicate of the value. Read more
1.0.0 · 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 GasProfile
impl Debug for GasProfile
Source§impl Default for GasProfile
impl Default for GasProfile
Source§fn default() -> GasProfile
fn default() -> GasProfile
Returns the “default value” for a type. Read more
impl Copy for GasProfile
Auto Trait Implementations§
impl Freeze for GasProfile
impl RefUnwindSafe for GasProfile
impl Send for GasProfile
impl Sync for GasProfile
impl Unpin for GasProfile
impl UnwindSafe for GasProfile
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