pub struct Trend<Unit> {
pub baseline: TrendBaseline<Unit>,
pub current_value: f64,
pub deviation: Deviation,
/* private fields */
}Fields§
§baseline: TrendBaseline<Unit>§current_value: f64§deviation: DeviationTrait Implementations§
Source§impl<'de, Unit> Deserialize<'de> for Trend<Unit>
impl<'de, Unit> Deserialize<'de> for Trend<Unit>
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
Source§impl<Unit: PartialEq> PartialEq for Trend<Unit>
impl<Unit: PartialEq> PartialEq for Trend<Unit>
impl<Unit> StructuralPartialEq for Trend<Unit>
Auto Trait Implementations§
impl<Unit> Freeze for Trend<Unit>
impl<Unit> RefUnwindSafe for Trend<Unit>where
Unit: RefUnwindSafe,
impl<Unit> Send for Trend<Unit>where
Unit: Send,
impl<Unit> Sync for Trend<Unit>where
Unit: Sync,
impl<Unit> Unpin for Trend<Unit>where
Unit: Unpin,
impl<Unit> UnsafeUnpin for Trend<Unit>
impl<Unit> UnwindSafe for Trend<Unit>where
Unit: UnwindSafe,
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