pub struct ChangePointResult {
pub change_points: Vec<ChangePoint>,
pub n_segments: usize,
pub is_valid: bool,
}Fields§
§change_points: Vec<ChangePoint>§n_segments: usize§is_valid: boolTrait Implementations§
Source§impl Clone for ChangePointResult
impl Clone for ChangePointResult
Source§fn clone(&self) -> ChangePointResult
fn clone(&self) -> ChangePointResult
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 ChangePointResult
impl Debug for ChangePointResult
Auto Trait Implementations§
impl Freeze for ChangePointResult
impl RefUnwindSafe for ChangePointResult
impl Send for ChangePointResult
impl Sync for ChangePointResult
impl Unpin for ChangePointResult
impl UnsafeUnpin for ChangePointResult
impl UnwindSafe for ChangePointResult
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