pub struct ProofConfig {
pub confidence_threshold: f32,
pub min_temperature_c: f32,
pub max_temperature_c: f32,
pub min_humidity_pct: f32,
pub max_humidity_pct: f32,
}Fields§
§confidence_threshold: f32§min_temperature_c: f32§max_temperature_c: f32§min_humidity_pct: f32§max_humidity_pct: f32Trait Implementations§
Source§impl Clone for ProofConfig
impl Clone for ProofConfig
Source§fn clone(&self) -> ProofConfig
fn clone(&self) -> ProofConfig
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for ProofConfig
Source§impl Debug for ProofConfig
impl Debug for ProofConfig
Source§impl Default for ProofConfig
impl Default for ProofConfig
Source§impl PartialEq for ProofConfig
impl PartialEq for ProofConfig
Source§fn eq(&self, other: &ProofConfig) -> bool
fn eq(&self, other: &ProofConfig) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ProofConfig
Auto Trait Implementations§
impl Freeze for ProofConfig
impl RefUnwindSafe for ProofConfig
impl Send for ProofConfig
impl Sync for ProofConfig
impl Unpin for ProofConfig
impl UnsafeUnpin for ProofConfig
impl UnwindSafe for ProofConfig
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