pub struct EnvironmentPressure {
pub level: f64,
pub source: String,
pub trend: PressureTrend,
}Fields§
§level: f64§source: String§trend: PressureTrendTrait Implementations§
Source§impl Clone for EnvironmentPressure
impl Clone for EnvironmentPressure
Source§fn clone(&self) -> EnvironmentPressure
fn clone(&self) -> EnvironmentPressure
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 EnvironmentPressure
impl Debug for EnvironmentPressure
Source§impl<'de> Deserialize<'de> for EnvironmentPressure
impl<'de> Deserialize<'de> for EnvironmentPressure
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
Auto Trait Implementations§
impl Freeze for EnvironmentPressure
impl RefUnwindSafe for EnvironmentPressure
impl Send for EnvironmentPressure
impl Sync for EnvironmentPressure
impl Unpin for EnvironmentPressure
impl UnsafeUnpin for EnvironmentPressure
impl UnwindSafe for EnvironmentPressure
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