pub struct StabilityAssessment {
pub score: f64,
pub window_secs: u64,
pub volatility: f64,
}Fields§
§score: f64§window_secs: u64§volatility: f64Trait Implementations§
Source§impl Clone for StabilityAssessment
impl Clone for StabilityAssessment
Source§fn clone(&self) -> StabilityAssessment
fn clone(&self) -> StabilityAssessment
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 StabilityAssessment
impl Debug for StabilityAssessment
Source§impl<'de> Deserialize<'de> for StabilityAssessment
impl<'de> Deserialize<'de> for StabilityAssessment
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 StabilityAssessment
impl RefUnwindSafe for StabilityAssessment
impl Send for StabilityAssessment
impl Sync for StabilityAssessment
impl Unpin for StabilityAssessment
impl UnsafeUnpin for StabilityAssessment
impl UnwindSafe for StabilityAssessment
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