pub struct DriftResult {
pub segments: Vec<DriftSegment>,
pub drift_slope: f64,
pub drift_r_squared: f64,
pub is_drifting: bool,
pub is_valid: bool,
}Fields§
§segments: Vec<DriftSegment>§drift_slope: f64§drift_r_squared: f64§is_drifting: bool§is_valid: boolTrait Implementations§
Source§impl Clone for DriftResult
impl Clone for DriftResult
Source§fn clone(&self) -> DriftResult
fn clone(&self) -> DriftResult
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 DriftResult
impl Debug for DriftResult
Auto Trait Implementations§
impl Freeze for DriftResult
impl RefUnwindSafe for DriftResult
impl Send for DriftResult
impl Sync for DriftResult
impl Unpin for DriftResult
impl UnsafeUnpin for DriftResult
impl UnwindSafe for DriftResult
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