pub struct PressureThresholds {
pub snip: Ppm,
pub micro: Ppm,
pub collapse: Ppm,
pub auto: Ppm,
pub renewal: Ppm,
}Expand description
The five pressure thresholds. Replaced as one value: a partial threshold ladder is how the strictly-increasing invariant gets violated one field at a time.
Fields§
§snip: Ppm§micro: Ppm§collapse: Ppm§auto: Ppm§renewal: PpmTrait Implementations§
Source§impl Clone for PressureThresholds
impl Clone for PressureThresholds
Source§fn clone(&self) -> PressureThresholds
fn clone(&self) -> PressureThresholds
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 PressureThresholds
Source§impl Debug for PressureThresholds
impl Debug for PressureThresholds
Source§impl<'de> Deserialize<'de> for PressureThresholds
impl<'de> Deserialize<'de> for PressureThresholds
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for PressureThresholds
Source§impl PartialEq for PressureThresholds
impl PartialEq for PressureThresholds
Source§impl Serialize for PressureThresholds
impl Serialize for PressureThresholds
impl StructuralPartialEq for PressureThresholds
Auto Trait Implementations§
impl Freeze for PressureThresholds
impl RefUnwindSafe for PressureThresholds
impl Send for PressureThresholds
impl Sync for PressureThresholds
impl Unpin for PressureThresholds
impl UnsafeUnpin for PressureThresholds
impl UnwindSafe for PressureThresholds
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